-
Notifications
You must be signed in to change notification settings - Fork 2
58 lines (47 loc) · 1.32 KB
/
contract.yaml
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
name: Contract
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
contract:
name: Contract
runs-on: ubuntu-latest
strategy:
matrix:
toolchain: [nightly, stable]
steps:
- id: checkout
name: Checkout Repository
uses: actions/checkout@v4
- id: setup
name: Setup Toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.toolchain }}
components: llvm-tools-preview
- id: cache
name: Enable Job Cache
uses: Swatinem/rust-cache@v2
- id: tools
name: Install Tools
uses: taiki-e/install-action@v2
with:
tool: cargo-llvm-cov, cargo-nextest
- id: pretty-test
name: Install pretty-test
run: cargo install cargo-pretty-test
- id: contract
name: Run contract
run: |
cargo test --lib --bins
cargo pretty-test --lib --bins
- id: summary
name: Generate contract Summary
run: |
echo "### Living Contract! :rocket:" >> $GITHUB_STEP_SUMMARY
cargo pretty-test --lib --bins --color=never >> $GITHUB_STEP_SUMMARY
echo '```console' >> $GITHUB_STEP_SUMMARY
echo "$OUTPUT" >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY