From dfda5c054a54a67bf12f89430bf22ae26af3dbc1 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sun, 7 Mar 2021 22:41:27 +0900 Subject: [PATCH] [actions] Install fish using apt-get For some reason, `test_ctrl_r` and `test_ctrl_r_abort` are not passing on GitHub Action runner with Fish 3.2.0. --- .github/workflows/linux.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index f8db7dc..c3f7d09 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -23,16 +23,13 @@ jobs: with: go-version: ${{ matrix.go }} - - name: fish-actions/install-fish - uses: fish-actions/install-fish@v1.0.0 - - name: Setup Ruby uses: ruby/setup-ruby@v1.62.0 with: ruby-version: 3.0.0 - name: Install packages - run: sudo apt-get install --yes zsh tmux + run: sudo apt-get install --yes zsh fish tmux - name: Install Ruby gems run: sudo gem install --no-document minitest:5.14.2 rubocop:1.0.0 rubocop-minitest:0.10.1 rubocop-performance:1.8.1