Skip to content

Commit

Permalink
Fix workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
n3vu0r committed Aug 16, 2023
1 parent 5883bec commit 3afc37e
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,25 @@ jobs:
- name: clippy
run: |
cargo clippy --tests --all-features -- -D clippy::all -D clippy::pedantic -D clippy::nursery
- name: doc
run: cargo doc --all-features
- name: fmt
run: cargo fmt --check --all-features
all-features-nightly:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
components: rustfmt, rust-docs, clippy
- name: test
run: cargo test --all-features
- name: clippy
run: |
cargo clippy --tests --all-features -- -D clippy::all -D clippy::pedantic -D clippy::nursery
- name: doc
env:
RUSTDOCFLAGS: --cfg docsrs
Expand Down

0 comments on commit 3afc37e

Please sign in to comment.