-
Notifications
You must be signed in to change notification settings - Fork 0
72 lines (60 loc) · 1.57 KB
/
rust.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
name: CI
on:
push:
branches:
- main
release:
types: [published]
env:
RUST_VERSION: 1.76.0
jobs:
lint-toml-files:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.RUST_VERSION }}
- name: Install Cargo.toml linter
uses: baptiste0928/cargo-install@v1
with:
crate: cargo-toml-lint
version: "0.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
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ env.RUST_VERSION }}
override: true
- name: Init cache
uses: Swatinem/rust-cache@v1
- name: Install rustfmt
run: rustup component add rustfmt
- name: Install Fuel toolchain
uses: FuelLabs/[email protected]
with:
toolchain: beta-5
# date: 2023-01-18
- name: Check Sway formatting
run: |
forc fmt --check
- name: Check Rust formatting
run: |
cargo fmt --verbose --check
- name: Build Sway
run: |
forc build
# Currently there's a weird bug on forc test that I cannot resolve
- name: Test Sway
run: |
forc test
- name: Run Rust tests
run: |
cargo test