From f2b8166a40c642c5b11ef2e3410dd093ac6ffa91 Mon Sep 17 00:00:00 2001 From: Wenxuan Zhang Date: Tue, 11 Aug 2020 17:11:44 +0800 Subject: [PATCH] ci: add version info Former-commit-id: 2d48dde0b3f974efce52de6e0191045c80abedce --- .github/workflows/ci.yaml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index af73ca2..a8a05b6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -13,7 +13,7 @@ jobs: # The type of runner that the job will run on runs-on: ${{ matrix.os }} strategy: - fail-fast: true + fail-fast: false matrix: os: [macos-latest, ubuntu-latest] @@ -27,11 +27,16 @@ jobs: shell: bash run: | if [[ "${{ matrix.os }}" == macos* ]]; then - brew install fish zsh || true + brew install zsh fish elif [[ "${{ matrix.os }}" == ubuntu* ]]; then sudo apt -y update - sudo apt -y install fish zsh + sudo apt -y install zsh fish fi + - name: Show version info + run: | + bash --version + zsh --version + fish --version - name: Test bash run: bash forgit.plugin.sh - name: Test zsh