-
Notifications
You must be signed in to change notification settings - Fork 2
47 lines (47 loc) · 1.21 KB
/
cargo-build-stable.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
on:
push:
branches:
- main
paths:
- '**.rs'
- Cargo.toml
- Cargo.lock
- .github/workflows/cargo-build.yml
- 'rust-toolchain.toml'
- 'spec.json'
pull_request:
paths:
- '**.rs'
- Cargo.toml
- Cargo.lock
- .github/workflows/cargo-build.yml
- 'rust-toolchain.toml'
- 'spec.json'
name: cargo build (stable)
jobs:
cargobuild:
name: cargo build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Install latest rust
uses: dtolnay/rust-toolchain@stable
- name: Cache cargo registry
uses: actions/cache@v4
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v4
with:
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo build
uses: actions/cache@v4
with:
path: target
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
- name: Run cargo build
run: |
cargo build
shell: bash