-
Notifications
You must be signed in to change notification settings - Fork 8
63 lines (54 loc) · 1.27 KB
/
ci-cargo-casper.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
---
name: ci-cargo-casper
on:
push:
branches:
- "dev"
- "feat-*"
- "release-*"
paths-ignore:
- '**.md'
pull_request:
branches:
- "dev"
- "feat-*"
- "release-*"
paths-ignore:
- '**.md'
jobs:
build_and_test:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Get nightly toolchain from file
id: nightly-toolchain
run: echo "version=$(cat resources/rust-toolchain.in)" >> $GITHUB_OUTPUT
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ steps.nightly-toolchain.outputs.version }}
profile: minimal
components: rustfmt, clippy
target: wasm32-unknown-unknown
- name: Fmt
uses: actions-rs/cargo@v1
with:
command: --locked
args: fmt -- --check
- name: Audit
uses: actions-rs/cargo@v1
with:
command: --locked
args: audit
- name: Clippy
uses: actions-rs/cargo@v1
with:
command: --locked
args: clippy --all-targets
- name: Test
uses: actions-rs/cargo@v1
with:
command: --locked
args: test