We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f95c94 commit 1d8b391Copy full SHA for 1d8b391
.github/workflows/tests.yaml
@@ -15,8 +15,11 @@ on:
15
16
jobs:
17
run_tests:
18
- name: Run tests
+ name: Run tests (Fish ${{ matrix.fish-version }})
19
runs-on: ubuntu-latest
20
+ strategy:
21
+ matrix:
22
+ fish-version: [3, 4]
23
steps:
24
- name: Checkout repository
25
uses: actions/checkout@v4
@@ -25,7 +28,7 @@ jobs:
28
26
29
- name: Install Fish
27
30
run: |
- sudo apt-add-repository -yn ppa:fish-shell/release-3
31
+ sudo apt-add-repository -yn ppa:fish-shell/release-${{ matrix.fish-version }}
32
sudo apt-get update
33
sudo apt-get install -y fish
34
0 commit comments