Skip to content

Commit

Permalink
Update workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
n3vu0r committed Aug 5, 2022
1 parent cad34ff commit 9f1b326
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ jobs:
- name: toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
profile: minimal
components: rustfmt, rust-docs, clippy
override: true
- name: test
uses: actions-rs/cargo@v1
Expand All @@ -26,7 +27,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- --deny clippy::pedantic
args: --tests -- --deny clippy::pedantic
- name: doc
uses: actions-rs/cargo@v1
with:
Expand All @@ -44,8 +45,9 @@ jobs:
- name: toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
profile: minimal
components: rustfmt, rust-docs, clippy
override: true
- name: test
uses: actions-rs/cargo@v1
Expand All @@ -56,7 +58,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: clippy
args: --features libm -- --deny clippy::pedantic
args: --features libm --tests -- --deny clippy::pedantic
- name: doc
uses: actions-rs/cargo@v1
with:
Expand Down

0 comments on commit 9f1b326

Please sign in to comment.