Skip to content
Snippets Groups Projects
Unverified Commit 1c9f14ae authored by Javier Viola's avatar Javier Viola Committed by GitHub
Browse files

chore(ci): add cache to workflows (#147)

Add cache to workflows.
parent 9ba4b139
No related branches found
No related tags found
No related merge requests found
......@@ -31,13 +31,18 @@ jobs:
- name: Init install
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} && rustup component add clippy
- name: Fetch cache
uses: Swatinem/rust-cache@a95ba195448af2da9b00fb742d14ffaaf3c21f43 # v2.7.0
with:
shared-key: "zombie-cache"
- name: Clippy
run: cargo clippy --all-targets --all-features
- name: Build
run: cargo build
- name: Tests
- name: Tests
run: cargo test --workspace
coverage:
......@@ -53,6 +58,11 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Fetch cache
uses: Swatinem/rust-cache@a95ba195448af2da9b00fb742d14ffaaf3c21f43 # v2.7.0
with:
shared-key: "zombie-cache"
- name: Install latest nextest release
uses: taiki-e/install-action@nextest
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment