github actions: remove cache (just caused hangs and failures)

This commit is contained in:
Carter Anderson 2020-06-08 10:06:27 -07:00
parent 086059c11f
commit b965bfc116

View file

@ -18,14 +18,6 @@ jobs:
with:
toolchain: stable
override: true
- uses: actions/cache@v2
with:
path: |
.cargo_home
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Configure cargo data directory
run: echo "::set-env name=CARGO_HOME::$(pwd)/.cargo_home"
- name: Build
run: cargo check
- name: Run tests