-
Notifications
You must be signed in to change notification settings - Fork 10
64 lines (64 loc) · 1.94 KB
/
test.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
on: pull_request
name: Test
jobs:
test:
strategy:
matrix:
rust-toolchain: [stable]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
environment: test
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust-toolchain }}
- name: Add wasm32-wasi Rust target
run: rustup target add wasm32-wasi --toolchain ${{ matrix.rust-toolchain }}
- name: Cache cargo registry
uses: actions/cache@v3
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v3
with:
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo build
uses: actions/cache@v3
with:
path: target
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
- name: Install fmt
run: rustup component add rustfmt
shell: bash
- name: Install clippy
run: rustup component add clippy
shell: bash
- name: Install audit
run: cargo install cargo-audit
shell: bash
- name: Prepare to store metadata
run: mkdir -p src/well-known
shell: bash
- name: Store JWKS metadata
run: echo "${{ secrets.JWKS_JSON }}" > src/well-known/jwks.json
shell: bash
- name: Store OIDC metadata
run: echo "${{ secrets.OIDC_METADATA_JSON }}" > src/well-known/openid-configuration.json
shell: bash
- name: Check binaries and format
run: RUSTFLAGS="--deny warnings" cargo check --bins --target wasm32-wasi && cargo fmt -- --check
shell: bash
- name: clippy
run: cargo clippy
shell: bash
- name: audit
run: cargo audit
shell: bash
- name: build
run: cargo build
shell: bash