Skip to content

Commit

Permalink
ci: add cargo-nono step
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddrysdale committed Jul 19, 2021
1 parent 996a4de commit 7db1bf3
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,25 @@ jobs:
- run: rustc --version
- run: cargo doc --no-deps --document-private-items

nono:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2021-07-01
override: true
components: rustfmt
- run: cargo install --git https://github.com/daviddrysdale/cargo-nono --branch allowlist cargo-nono
- run: cargo nono check --package tink-proto --allow spin
- run: cargo nono check --package tink-core --allow spin
- run: cargo nono check --package tink-prf --allow spin
- run: cargo nono check --package tink-mac --allow spin
- run: cargo nono check --package tink-aead --allow spin
- run: cargo nono check --package tink-daead --allow spin
- run: cargo nono check --package tink-signature --allow spin --allow signature --allow ed25519-dalek

udeps:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 7db1bf3

Please sign in to comment.