-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (47 loc) · 1.62 KB
/
Basic.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
on: [pull_request]
name: Basic
# Cancel in progress workflows on pull_requests.
# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
name: Test Suite
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout sources
uses: actions/checkout@v4
- name: ☁️ Install stable
uses: dtolnay/rust-toolchain@stable
with:
target: wasm32-unknown-unknown
- name: 🔑 Setup PAT
run: sed -i 's|ssh://[email protected]/sedaprotocol/vrf-rs.git|https://x-access-token:${{ secrets.PAT_TOKEN }}@github.com/sedaprotocol/vrf-rs.git|' Cargo.toml
- name: 📋 Run cargo clippy
run: cargo clippy -- -D warnings
- name: 🧪 Run unit tests
if: always()
run: cargo test --locked
env:
RUST_BACKTRACE: 1
- name: 📝 Generate Schema
if: always()
run: cargo schema --locked
- name: ✔️ Schema Changes
# fails if any changes not committed
run: git diff --exit-code schema
- name: 🦾 Compile WASM contract
run: cargo build -p seda-contract --release --lib --target wasm32-unknown-unknown --locked
fmt:
name: fmt
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout sources
uses: actions/checkout@v4
- name: ☁️ Install Nightly
uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- name: 📋 Format Check
run: cargo +nightly fmt -- --check