Skip to content

Commit

Permalink
feat(ci): cache deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomio committed May 15, 2022
1 parent f0752df commit 931844a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/continuous-integration.yml
Expand Up @@ -38,6 +38,9 @@ jobs:
toolchain: nightly
override: true

- name: Cache dependencies
uses: Swatinem/rust-cache@v1

- name: Install rustfmt
run: rustup component add rustfmt

Expand All @@ -60,6 +63,9 @@ jobs:
profile: minimal
toolchain: nightly
override: true

- name: Cache dependencies
uses: Swatinem/rust-cache@v1

- name: Install clippy
run: rustup component add clippy
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/integration-tests.yml
Expand Up @@ -47,6 +47,9 @@ jobs:
toolchain: ${{ matrix.toolchain }}
override: true

- name: Cache dependencies
uses: Swatinem/rust-cache@v1

- name: Install Nextest
uses: taiki-e/install-action@nextest

Expand Down

0 comments on commit 931844a

Please sign in to comment.