Skip to content

Commit 7db1bf3

Browse files
committed
ci: add cargo-nono step
1 parent 996a4de commit 7db1bf3

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/ci.yml

+19
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,25 @@ jobs:
113113
- run: rustc --version
114114
- run: cargo doc --no-deps --document-private-items
115115

116+
nono:
117+
runs-on: ubuntu-latest
118+
steps:
119+
- uses: actions/checkout@v2
120+
- uses: actions-rs/toolchain@v1
121+
with:
122+
profile: minimal
123+
toolchain: nightly-2021-07-01
124+
override: true
125+
components: rustfmt
126+
- run: cargo install --git https://github.com/daviddrysdale/cargo-nono --branch allowlist cargo-nono
127+
- run: cargo nono check --package tink-proto --allow spin
128+
- run: cargo nono check --package tink-core --allow spin
129+
- run: cargo nono check --package tink-prf --allow spin
130+
- run: cargo nono check --package tink-mac --allow spin
131+
- run: cargo nono check --package tink-aead --allow spin
132+
- run: cargo nono check --package tink-daead --allow spin
133+
- run: cargo nono check --package tink-signature --allow spin --allow signature --allow ed25519-dalek
134+
116135
udeps:
117136
runs-on: ubuntu-latest
118137
steps:

0 commit comments

Comments
 (0)