forked from ARK-Builders/ark-core
-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (44 loc) · 1.09 KB
/
build.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
name: Verify Build
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
format:
name: Code Formatting Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Nightly Rust with rustfmt
uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly
components: rustfmt
- name: Run rustfmt
run: cargo fmt --all -- --check
build-and-test:
name: Build and Test
runs-on: ${{ matrix.os }}
# Needed for the benchmark workflow to know the base ref
outputs:
base_ref: ${{ github.event.pull_request.base.ref }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Set up Cargo Cache
uses: Swatinem/rust-cache@v2
with:
save-if: false
- name: Run tests
run: cargo test --workspace --verbose
- name: Build Release
run: cargo build --verbose --release