diff options
| author | Stephan Seitz <stephan.seitz@fau.de> | 2022-01-21 20:45:31 +0100 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2022-01-21 22:06:17 +0100 |
| commit | 3c462d362f49611c295e6c4870c97e2ae7f530cd (patch) | |
| tree | 3eb487a1f2776bdd815357cbf15eb953bf27e8cc /.github/workflows/tests.yml | |
| parent | ci: stop uploading artifacts (binary release archives soonish?) (diff) | |
| download | nvim-treesitter-3c462d362f49611c295e6c4870c97e2ae7f530cd.tar nvim-treesitter-3c462d362f49611c295e6c4870c97e2ae7f530cd.tar.gz nvim-treesitter-3c462d362f49611c295e6c4870c97e2ae7f530cd.tar.bz2 nvim-treesitter-3c462d362f49611c295e6c4870c97e2ae7f530cd.tar.lz nvim-treesitter-3c462d362f49611c295e6c4870c97e2ae7f530cd.tar.xz nvim-treesitter-3c462d362f49611c295e6c4870c97e2ae7f530cd.tar.zst nvim-treesitter-3c462d362f49611c295e6c4870c97e2ae7f530cd.zip | |
ci: Avoid rust-cache (failures and current git dependency)
Diffstat (limited to '.github/workflows/tests.yml')
| -rw-r--r-- | .github/workflows/tests.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 13acf8240..49d2029bf 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -35,7 +35,13 @@ jobs: profile: minimal toolchain: nightly - - uses: Swatinem/rust-cache@v1 + - name: Cache .cargo + id: cargo-cache + uses: actions/cache@v2 + with: + path: | + ./.cargo/ + key: v1.0.4 - name: Test Dependencies run: | |
