-
Notifications
You must be signed in to change notification settings - Fork 71
43 lines (40 loc) · 1006 Bytes
/
signatory.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: signatory
on:
pull_request:
paths:
- "signatory/**"
- "Cargo.*"
push:
branches: main
defaults:
run:
working-directory: signatory
env:
CARGO_INCREMENTAL: 0
RUSTFLAGS: "-Dwarnings"
jobs:
test:
strategy:
matrix:
platform:
- ubuntu-latest
- macos-latest
- windows-latest
toolchain:
- 1.65.0 # MSRV
- stable
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
override: true
profile: minimal
- run: cargo test --release --no-default-features
- run: cargo test --release
- run: cargo test --release --features ecdsa
- run: cargo test --release --features ed25519
- run: cargo test --release --features nistp256
- run: cargo test --release --features secp256k1
- run: cargo test --release --all-features