Browse Source

Removed cache from MacOS builds (#873)

pull/877/head
Iban Eguia 4 years ago committed by GitHub
parent
commit
9a295fe45c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 16
      .github/workflows/rust.yml

16
.github/workflows/rust.yml

@ -62,14 +62,6 @@ jobs:
toolchain: stable
override: true
profile: minimal
- name: Cache cargo build
uses: actions/cache@v2
with:
path: |
target
~/.cargo/git
~/.cargo/registry
key: ${{ runner.os }}-cargo-check-${{ hashFiles('**/Cargo.lock') }}
- uses: actions-rs/cargo@v1
with:
command: check
@ -134,14 +126,6 @@ jobs:
toolchain: stable
override: true
profile: minimal
- name: Cache cargo
uses: actions/cache@v2
with:
path: |
target
~/.cargo/git
~/.cargo/registry
key: ${{ runner.os }}-cargo-test-${{ hashFiles('**/Cargo.lock') }}
- uses: actions-rs/cargo@v1
with:
command: test

Loading…
Cancel
Save