Skip to content

Commit 1ee7ca1

Browse files
author
alexperez
committed
chore: update deployment workflow to use matrix strategy for OS
1 parent 229f29d commit 1ee7ca1

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/deployment.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,13 @@ on:
1313
- main
1414
jobs:
1515
test_linux:
16-
name: Ubuntu
17-
runs-on: ubuntu-latest
16+
name: ${{ matrix.os }}
17+
strategy:
18+
fail-fast: false
19+
matrix:
20+
os: [ubuntu-20.04]
21+
# os: [ubuntu-18.04, ubuntu-20.04]
22+
runs-on: ${{ matrix.os }}
1823
steps:
1924
- uses: actions/checkout@v2
2025
- uses: actions/setup-node@v1

0 commit comments

Comments
 (0)