Skip to content

Commit

Permalink
fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Lips7 committed Jul 8, 2024
1 parent f253b31 commit d5ddc74
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Run tests runtime_build
run: cargo test -p matcher_rs --verbose --no-default-features --features "runtime_build"
- name: Run tests serde
run: cargo test -p matcher_rs --verbose --no-default-features --features "serde"
run: cargo test -p matcher_rs --verbose -features "serde"
- name: Run doc
run: cargo doc
- name: Release
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ jobs:
toolchain: nightly
target: ${{ matrix.platform.target }}
- name: Test prebuilt
run: cargo test -p matcher_rs --target ${{ matrix.platform.target }} --no-default-features --features "prebuilt"
run: cargo test -p matcher_rs --target ${{ matrix.platform.target }} --verbose --no-default-features --features "prebuilt"
- name: Test runtime_build
run: cargo test -p matcher_rs --target ${{ matrix.platform.target }} --no-default-features --features "runtime_build"
run: cargo test -p matcher_rs --target ${{ matrix.platform.target }} --verbose --no-default-features --features "runtime_build"
- name: Test serde
run: cargo test -p matcher_rs --target ${{ matrix.platform.target }} --no-default-features --features "serde"
run: cargo test -p matcher_rs --target ${{ matrix.platform.target }} --verbose --features "serde"
- name: Build
run: cargo build --release --target ${{ matrix.platform.target }}
- name: Rename & move
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
- matcher_c use from_utf8_unchecked instead of from_utf8.
- Build multiple wheels for different python version.
- Update FANJIAN.txt and NORM.txt.
- Fix issues with `runtime_build` feature.

## 0.4.2 - 2024-07-07
### Changed
Expand Down

0 comments on commit d5ddc74

Please sign in to comment.