Skip to content

Commit 8c3bc87

Browse files
authored
Merge port of yew-autoprops in Yew to yew-autoprops (#10)
Fixes #8 Fixes #7 Fixes #9 Fixes #3 Related to yewstack/yew#3505
1 parent 584c416 commit 8c3bc87

21 files changed

+1841
-378
lines changed

.github/workflows/rust.yml

+12-8
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,25 @@ name: Rust
22

33
on:
44
push:
5-
branches: [ "master" ]
5+
branches: [ "main" ]
66
pull_request:
7-
branches: [ "master" ]
7+
branches: [ "main" ]
88

99
env:
1010
CARGO_TERM_COLOR: always
1111

1212
jobs:
1313
build:
14-
14+
strategy:
15+
matrix:
16+
rust:
17+
- stable
18+
- 1.64.0
1519
runs-on: ubuntu-latest
16-
1720
steps:
1821
- uses: actions/checkout@v3
19-
- name: Build
20-
run: cargo build --verbose
21-
- name: Run tests
22-
run: cargo test --verbose
22+
- uses: Swatinem/rust-cache@v2
23+
with:
24+
key: rust-${{ matrix.rust }}
25+
- run: rustup default ${{ matrix.rust }}
26+
- run: cargo test --verbose

.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/target
22
output.log
3-
Cargo.lock
43
.envrc
5-
.aider*
4+
.aider*

0 commit comments

Comments
 (0)