-
Notifications
You must be signed in to change notification settings - Fork 31
56 lines (44 loc) · 1.22 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
name: Rust
on:
push:
branches: [ "2.0" ]
pull_request:
branches: [ "2.0" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust nightly
run: rustup override set nightly
- name: Install required components
run: rustup component add rustfmt clippy
- name: Cache cargo registry
uses: actions/cache@v2
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-registry-
- name: Cache cargo build
uses: actions/cache@v2
with:
path: target
key: ${{ runner.os }}-cargo-build-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-build-
- name: Build
env:
CARGO_MANIFEST_DIR: ${{ github.workspace }}
run: cargo build --release --verbose
- name: Run tests
env:
CARGO_MANIFEST_DIR: ${{ github.workspace }}
run: cargo test --verbose
- name: Upload executable
uses: actions/upload-artifact@v2
with:
name: ferrumc2_0
path: target/release/ferrumc2_0