Skip to content

Commit 9bfbadf

Browse files
authored
Merge pull request #11 from securenative/dev
Run actions on various os
2 parents 6ea8ec1 + 2bd0b79 commit 9bfbadf

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ on:
1010
jobs:
1111
test:
1212
name: CI
13-
runs-on: ubuntu-18.04
13+
runs-on: ${{ matrix.os }}
14+
strategy:
15+
matrix:
16+
os: [macos-latest, ubuntu-latest, windows-latest]
1417
steps:
1518
- uses: actions/checkout@v1
1619
- uses: actions/setup-ruby@v1

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ on:
99
jobs:
1010
test:
1111
name: Testing
12-
runs-on: ubuntu-18.04
12+
runs-on: ${{ matrix.os }}
13+
strategy:
14+
matrix:
15+
os: [macos-latest, ubuntu-latest, windows-latest]
1316
steps:
1417
- uses: actions/checkout@v1
1518
- uses: actions/setup-ruby@v1

0 commit comments

Comments
 (0)