-
Notifications
You must be signed in to change notification settings - Fork 224
67 lines (53 loc) · 1.19 KB
/
casper-node.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
---
name: casper-node
# runs steps that are OK with normal rust based on ./rust-toolchain.toml
permissions:
contents: read
on:
push:
branches:
- dev
- trying
- staging
- 'release-**'
- 'feat-**'
paths-ignore:
- '**.md'
pull_request:
branches:
- dev
- 'release-**'
- 'feat-**'
paths-ignore:
- '**.md'
jobs:
lints:
name: tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: setup
run: make setup
- name: setup ubuntu
run: |
sudo apt-get -y install wabt
- uses: Swatinem/rust-cache@v2
- name: check-format
run: make check-format
- name: doc
run: make doc
- name: lint
run: make lint
- name: audit
run: make audit
- name: check-std-features
run: make check-std-features
- name: check-testing-features
run: make check-testing-features
- name: test
run: make test CARGO_FLAGS=--release
- name: test-contracts
run: make test-contracts CARGO_FLAGS=--release