Skip to content

Commit 159fe30

Browse files
authored
Merge pull request #166 from github/djdefi-expand-matrix
Test other ubuntu versions
2 parents f6e418a + c7fb8a3 commit 159fe30

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,9 @@ jobs:
66
build:
77
strategy:
88
matrix:
9-
os: ['ubuntu-latest', 'macos-latest']
10-
# os: ['ubuntu-20.04', 'ubuntu-18.04', 'ubuntu-16.04', 'macos-latest']
9+
os: ['ubuntu-20.04', 'ubuntu-18.04', 'ubuntu-16.04', 'macos-latest']
1110
fail-fast: false
1211
runs-on: ${{ matrix.os }}
13-
1412
steps:
1513
- name: Install Dependencies (Linux)
1614
run: |
@@ -19,7 +17,7 @@ jobs:
1917
wget "https://github.com/koalaman/shellcheck/releases/download/v0.7.0/shellcheck-v0.7.0.linux.x86_64.tar.xz"
2018
tar --xz -xvf "shellcheck-v0.7.0.linux.x86_64.tar.xz"
2119
sudo cp shellcheck-v0.7.0/shellcheck /usr/bin/shellcheck
22-
if: matrix.os == 'ubuntu-latest'
20+
if: matrix.os != 'macos-latest'
2321
- name: Install Dependencies (macOS)
2422
run: |
2523
brew install gnu-tar shellcheck jq pigz coreutils gnu-sed gnu-getopt
@@ -35,4 +33,4 @@ jobs:
3533
shell: bash
3634
- name: Build (Linux)
3735
run: DEB_BUILD_OPTIONS=nocheck debuild -us -uc
38-
if: matrix.os == 'ubuntu-latest'
36+
if: matrix.os != 'macos-latest'

0 commit comments

Comments
 (0)