-
Notifications
You must be signed in to change notification settings - Fork 0
87 lines (69 loc) · 2.26 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
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: ☁️ Install Nextest
uses: taiki-e/install-action@nextest
- name: 📋 Run cargo clippy
run: cargo clippy -- -D warnings
- name: 🧪 Run unit tests
if: always()
run: cargo test-ci
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
- name: ☁️ Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: 🧪 Test Coverage
run: cargo cov-ci
- name: 📊 Generate Code Coverage Report
uses: irongut/[email protected]
with:
filename: "cobertura.xml"
badge: true
fail_below_min: false
format: markdown
hide_branch_rate: false
hide_complexity: false
indicators: true
output: both
# thresholds: "10 30"
- name: 💬 Add Coverage PR Comment
uses: marocchino/sticky-pull-request-comment@v2
if: github.event_name == 'pull_request'
with:
recreate: true
path: code-coverage-results.md
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