This repository has been archived by the owner on Nov 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
65 lines (54 loc) · 1.71 KB
/
ci.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
name: CI suite
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
build_and_test:
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-C link-args=-Wl,--allow-multiple-definition"
steps:
- name: Checkout sources
uses: actions/checkout@v3
with:
token: ${{ secrets.GH_TOKEN }}
submodules: recursive
- name: Install toolchain
uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2023-08-23
targets: wasm32-unknown-unknown
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.9.1'
repo-token: ${{ secrets.GH_TOKEN }}
- name: Build
run: |
cargo +nightly-2023-08-23 check --workspace --all-targets --all-features --verbose --locked
- name: Build `no-std`
run: |
cargo +nightly-2023-08-23 check -p pallet-ismp --no-default-features --target=wasm32-unknown-unknown --verbose --locked
cargo +nightly-2023-08-23 check -p ismp-demo --no-default-features --target=wasm32-unknown-unknown --verbose --locked
- name: Test
run: |
cargo +nightly-2023-08-23 test -p pallet-ismp --all-targets --all-features --verbose --locked
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
with:
token: ${{ secrets.GH_TOKEN }}
submodules: recursive
- name: Install toolchain
uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- name: Check format
run: cargo +nightly fmt --all --check