diff options
| author | Munif Tanjim <hello@muniftanjim.dev> | 2022-01-23 01:24:36 +0600 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2022-01-22 20:54:53 +0100 |
| commit | 020905ff26e3c9f8a450d009b635d8611df492f7 (patch) | |
| tree | eaf9aa95aaed37b1583b1ed241b9254ab88688a2 /.github/workflows | |
| parent | ci: drop windows+clang (diff) | |
| download | nvim-treesitter-020905ff26e3c9f8a450d009b635d8611df492f7.tar nvim-treesitter-020905ff26e3c9f8a450d009b635d8611df492f7.tar.gz nvim-treesitter-020905ff26e3c9f8a450d009b635d8611df492f7.tar.bz2 nvim-treesitter-020905ff26e3c9f8a450d009b635d8611df492f7.tar.lz nvim-treesitter-020905ff26e3c9f8a450d009b635d8611df492f7.tar.xz nvim-treesitter-020905ff26e3c9f8a450d009b635d8611df492f7.tar.zst nvim-treesitter-020905ff26e3c9f8a450d009b635d8611df492f7.zip | |
ci: fix cache path for rust cargo
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/tests.yml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b5e297669..d87a3aae6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -40,15 +40,18 @@ jobs: uses: actions/cache@v2 with: path: | - ./.cargo/ - key: v1.0.4 + ~/.cargo/bin/ + ~/.cargo/registry/index/ + ~/.cargo/registry/cache/ + ~/.cargo/git/db/ + key: ${{ matrix.os }}-rust-cargo-v1 - name: Test Dependencies run: | mkdir -p ~/.local/share/nvim/site/pack/plenary.nvim/start cd ~/.local/share/nvim/site/pack/plenary.nvim/start git clone https://github.com/nvim-lua/plenary.nvim - ~/.cargo/bin/cargo +nightly install --git https://github.com/theHamsta/highlight-assertions --locked + ~/.cargo/bin/cargo +nightly install --force --git https://github.com/theHamsta/highlight-assertions --locked - name: Install and prepare Neovim env: |
