diff options
| author | TJ DeVries <devries.timothyj@gmail.com> | 2022-08-04 16:00:30 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-04 16:00:30 -0400 |
| commit | 4725867ec66b9a0f5e5ad95a1fd94c2f97fa2d2c (patch) | |
| tree | f4dcf668bb66469273e630f69eebe123d390f2c0 /.github/workflows | |
| parent | 75a5e5065376d9103fc4bafc3ae6327304cee6e9 (diff) | |
fix: restore testing framework to actually work (#2070)
after refactor to some new asynchronous items for finders,
the tests stopped actually doing anything.
now they do things again.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e26ae9b..1e05c35 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,19 +13,19 @@ jobs: - os: ubuntu-20.04 url: https://github.com/neovim/neovim/releases/download/nightly/nvim-linux64.tar.gz manager: sudo apt-get - packages: -y fd-find + packages: -y ripgrep - os: ubuntu-20.04 url: https://github.com/neovim/neovim/releases/download/v0.7.0/nvim-linux64.tar.gz manager: sudo apt-get - packages: -y fd-find + packages: -y ripgrep - os: macos-10.15 url: https://github.com/neovim/neovim/releases/download/nightly/nvim-macos.tar.gz manager: brew - packages: fd + packages: ripgrep - os: macos-10.15 url: https://github.com/neovim/neovim/releases/download/v0.7.0/nvim-macos.tar.gz manager: brew - packages: fd + packages: ripgrep steps: - uses: actions/checkout@v2 - run: date +%F > todays-date |
