Skip to content

Commit

Permalink
ci: fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Miquel Sabaté Solà <[email protected]>
  • Loading branch information
mssola committed Oct 9, 2024
1 parent 02b6282 commit d51355b
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,24 @@ jobs:
- uses: actions/checkout@v4

- name: Run tests
run: cargo test
run: cargo test --verbose

- name: Run Clippy
run: cargo clippy --all-targets --all-features

fuzz:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Update rust toolchain to nightly
run: |
rustup update nightly
rustup default nightly
- name: Build with nightly
run: cargo build --verbose

- name: Fuzzy testing
run: |
cd lib/xixanta
Expand Down

0 comments on commit d51355b

Please sign in to comment.