From 428ed11618e23f579767f40ce858b8b6e6de99f4 Mon Sep 17 00:00:00 2001 From: Wenxuan Zhang Date: Tue, 11 Aug 2020 17:07:46 +0800 Subject: [PATCH] ci: split Former-commit-id: fea7771a0c726d6a32e4a19960544e8d1765a398 --- .github/workflows/ci.yaml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3afeca9..af73ca2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -27,15 +27,14 @@ jobs: shell: bash run: | if [[ "${{ matrix.os }}" == macos* ]]; then - brew install fish zsh + brew install fish zsh || true elif [[ "${{ matrix.os }}" == ubuntu* ]]; then sudo apt -y update sudo apt -y install fish zsh fi - - # Runs a set of commands using the runners shell - - name: Test sourcing - run: | - bash forgit.plugin.sh - zsh forgit.plugin.zsh - fish forgit.plugin.fish + - name: Test bash + run: bash forgit.plugin.sh + - name: Test zsh + run: zsh forgit.plugin.zsh + - name: Test fish + run: fish forgit.plugin.fish