Skip to content

Commit

Permalink
add platform to matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
mcrumm committed Apr 29, 2020
1 parent 85bdf84 commit b02143c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ jobs:
name: mix test (OTP ${{matrix.otp}} | Elixir ${{matrix.elixir}})
strategy:
matrix:
platform: [ubuntu-latest, windows-latest]
otp: [21.x, 22.x]
elixir: [1.7.x, 1.8.x, 1.9.x, 1.10.x]
runs-on: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v1
- uses: actions/setup-elixir@v1.2.0
Expand All @@ -30,7 +31,10 @@ jobs:

npm_test:
name: npm test
runs-on: [ubuntu-latest, windows-latest]
strategy:
matrix:
platform: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v1
- uses: actions/setup-elixir@v1.2.0
Expand Down

0 comments on commit b02143c

Please sign in to comment.