Skip to content

Commit

Permalink
Merge port of yew-autoprops in Yew to yew-autoprops (#10)
Browse files Browse the repository at this point in the history
Fixes #8
Fixes #7
Fixes #9
Fixes #3
Related to yewstack/yew#3505
  • Loading branch information
cecton authored Dec 4, 2023
1 parent 584c416 commit 8c3bc87
Show file tree
Hide file tree
Showing 21 changed files with 1,841 additions and 378 deletions.
20 changes: 12 additions & 8 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,25 @@ name: Rust

on:
push:
branches: [ "master" ]
branches: [ "main" ]
pull_request:
branches: [ "master" ]
branches: [ "main" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:

strategy:
matrix:
rust:
- stable
- 1.64.0
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- uses: Swatinem/rust-cache@v2
with:
key: rust-${{ matrix.rust }}
- run: rustup default ${{ matrix.rust }}
- run: cargo test --verbose
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/target
output.log
Cargo.lock
.envrc
.aider*
.aider*
Loading

0 comments on commit 8c3bc87

Please sign in to comment.