-
Notifications
You must be signed in to change notification settings - Fork 548
145 lines (118 loc) · 3.27 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
name: CI
on:
push:
branches:
- master
pull_request:
release:
types: [published]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
RUST_VERSION: 1.78.0
jobs:
lint-toml-files:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.RUST_VERSION }}
- name: Install Cargo.toml linter
uses: baptiste0928/cargo-install@v2
with:
crate: cargo-toml-lint
version: "0.1.1"
- name: Run Cargo.toml linter
run: git ls-files | grep Cargo.toml$ | xargs --verbose -n 1 cargo-toml-lint
build:
runs-on: ubuntu-latest
strategy:
matrix:
project:
[
"airdrop",
"AMM",
"english-auction",
"counter-script",
"DAO",
"escrow",
"fundraiser",
"TicTacToe",
"multisig-wallet",
"name-registry",
"NFT",
"native-asset",
"fractional-NFT",
"oracle",
"OTC-swap-predicate",
".devops/.template",
"timelock",
]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.RUST_VERSION }}
components: clippy, rustfmt
- name: Init cache
uses: Swatinem/rust-cache@v2
- name: Install Fuel toolchain
uses: FuelLabs/[email protected]
with:
toolchain: nightly
date: 2024-05-28
- name: Check Sway formatting
run: |
cd ${{ matrix.project }}
forc fmt --check
- name: Check Rust formatting
run: |
cd ${{ matrix.project }}
cargo fmt --verbose --check
- name: Build Sway
run: |
cd ${{ matrix.project }}
forc build --locked
- name: Build Rust files
run: |
cd ${{ matrix.project }}
cargo build --locked
- name: Check Clippy Linter
run: |
cd ${{ matrix.project }}
cargo clippy --all-features --all-targets -- -D warnings
- name: Run Rust tests
run: |
cd ${{ matrix.project }}
cargo test --locked
- name: Run Sway tests
run: |
cd ${{ matrix.project }}
forc test
contributing-book:
runs-on: ubuntu-latest
strategy:
matrix:
project: [".docs/contributing-book/src/code"]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.RUST_VERSION }}
- name: Init cache
uses: Swatinem/rust-cache@v2
- name: Install Fuel toolchain
uses: FuelLabs/[email protected]
with:
toolchain: nightly
date: 2024-05-28
- name: Check Sway formatting
run: cd ${{ matrix.project }} && forc fmt --check
- name: Build Sway
run: cd ${{ matrix.project }} && forc build --locked