-
Notifications
You must be signed in to change notification settings - Fork 4
136 lines (110 loc) · 3.42 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
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:
CARGO_TERM_COLOR: always
REGISTRY: ghcr.io
RUST_VERSION: 1.81.0
jobs:
build-projects:
runs-on: ubuntu-latest
strategy:
matrix:
project: ["src14/owned_proxy/contract"]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Init cache
uses: Swatinem/rust-cache@v2
- name: Install Fuel toolchain
uses: FuelLabs/[email protected]
with:
toolchain: latest
- name: Check Sway formatting
run: |
cd ${{ matrix.project }}
forc fmt --check
- name: Build Sway
run: |
cd ${{ matrix.project }}
forc build --release --locked --error-on-warnings
test-projects:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Init cache
uses: Swatinem/rust-cache@v2
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.RUST_VERSION }}
components: clippy, rustfmt
- name: Install Fuel toolchain
uses: FuelLabs/[email protected]
with:
toolchain: latest
- name: Build All Tests Artifacts
run: forc build --path tests --release
- name: Check Rust formatting
run: cargo fmt --manifest-path tests/Cargo.toml --verbose --check
- name: Check Clippy Linter
run: cargo clippy --manifest-path tests/Cargo.toml --all-features --all-targets -- -D warnings
- name: Cargo Test sway-lib
run: cargo test --manifest-path tests/Cargo.toml
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
check-changelog:
name: Check Changelog
runs-on: ubuntu-latest
steps:
- uses: tarides/changelog-check-action@v2
with:
changelog: CHANGELOG.md
build-scripts:
runs-on: ubuntu-latest
strategy:
matrix:
project: ["src14/owned_proxy/scripts"]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Init cache
uses: Swatinem/rust-cache@v2
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.RUST_VERSION }}
components: clippy, rustfmt
- name: Check Rust formatting
run: |
cd ${{ matrix.project }}
cargo fmt --verbose --check
- name: Cargo Build scripts
run: |
cd ${{ matrix.project }}
cargo build
- name: Check Clippy Linter
run: |
cd ${{ matrix.project }}
cargo clippy --all-features --all-targets -- -D warnings