cache builds (#49)
* cache builds * improve cache steps * un-restrict target cache * remove release cache
This commit is contained in:
parent
1c59f85ea8
commit
086f4cc27c
1 changed files with 26 additions and 2 deletions
28
.github/workflows/rust.yml
vendored
28
.github/workflows/rust.yml
vendored
|
@ -15,13 +15,21 @@ jobs:
|
|||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
|
||||
- name: Install rust
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
override: true
|
||||
|
||||
- uses: actions/cache@v2
|
||||
with:
|
||||
path: |
|
||||
~/.cargo/registry
|
||||
~/.cargo/git
|
||||
target
|
||||
key: ${{ runner.os }}-cargo-release-${{ hashFiles('**/Cargo.lock') }}
|
||||
|
||||
- name: Run cargo build
|
||||
run: cargo build --all --release && strip target/release/atuin
|
||||
|
||||
|
@ -37,6 +45,14 @@ jobs:
|
|||
toolchain: stable
|
||||
override: true
|
||||
|
||||
- uses: actions/cache@v2
|
||||
with:
|
||||
path: |
|
||||
~/.cargo/registry
|
||||
~/.cargo/git
|
||||
target
|
||||
key: ${{ runner.os }}-cargo-debug-${{ hashFiles('**/Cargo.lock') }}
|
||||
|
||||
- name: Run cargo test
|
||||
run: cargo test --workspace
|
||||
|
||||
|
@ -53,6 +69,14 @@ jobs:
|
|||
override: true
|
||||
components: clippy
|
||||
|
||||
- uses: actions/cache@v2
|
||||
with:
|
||||
path: |
|
||||
~/.cargo/registry
|
||||
~/.cargo/git
|
||||
target
|
||||
key: ${{ runner.os }}-cargo-debug-${{ hashFiles('**/Cargo.lock') }}
|
||||
|
||||
- name: Run clippy
|
||||
run: cargo clippy -- -D warnings
|
||||
|
||||
|
@ -68,6 +92,6 @@ jobs:
|
|||
toolchain: stable
|
||||
override: true
|
||||
components: rustfmt
|
||||
|
||||
|
||||
- name: Format
|
||||
run: cargo fmt -- --check
|
||||
|
|
Loading…
Reference in a new issue