Skip to content

Commit

Permalink
elixir 1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
jechol committed Oct 2, 2021
1 parent 812db5d commit 3756551
Showing 1 changed file with 9 additions and 41 deletions.
50 changes: 9 additions & 41 deletions .github/workflows/mix_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,45 +15,13 @@ on:
jobs:
# Refactoring duplicated yaml is currently not possible
# because Github does not support anchor syntax (& and *) now.
elixir_1_11:
runs-on: ubuntu-latest
name: Test on Elixir ${{matrix.elixir}} / OTP ${{matrix.otp}}
strategy:
matrix:
elixir: [1.11.0]
otp: [21.0, 22.0, 23.0]
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
elixir-version: ${{matrix.elixir}}
otp-version: ${{matrix.otp}}
- run: mix deps.get
- run: mix test

elixir_1_10:
runs-on: ubuntu-latest
name: Test on Elixir ${{matrix.elixir}} / OTP ${{matrix.otp}}
strategy:
matrix:
elixir: [1.10.0]
otp: [21.0, 22.0]
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
elixir-version: ${{matrix.elixir}}
otp-version: ${{matrix.otp}}
- run: mix deps.get
- run: mix test

elixir_1_9:
elixir_1_12:
runs-on: ubuntu-latest
name: Test on Elixir ${{matrix.elixir}} / OTP ${{matrix.otp}}
strategy:
matrix:
elixir: [1.9.0]
otp: [20.0, 21.0, 22.0]
elixir: [1.12.0]
otp: [22.0, 23.0, 24.0]
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
Expand All @@ -63,13 +31,13 @@ jobs:
- run: mix deps.get
- run: mix test

elixir_1_8:
elixir_1_11:
runs-on: ubuntu-latest
name: Test on Elixir ${{matrix.elixir}} / OTP ${{matrix.otp}}
strategy:
matrix:
elixir: [1.8.0]
otp: [20.0, 21.0, 22.0]
elixir: [1.11.0]
otp: [21.0, 22.0, 23.0]
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
Expand All @@ -79,13 +47,13 @@ jobs:
- run: mix deps.get
- run: mix test

elixir_1_7:
elixir_1_10:
runs-on: ubuntu-latest
name: Test on Elixir ${{matrix.elixir}} / OTP ${{matrix.otp}}
strategy:
matrix:
elixir: [1.7.0]
otp: [19.0, 20.0, 21.0, 22.0]
elixir: [1.10.0]
otp: [21.0, 22.0]
steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
Expand Down

0 comments on commit 3756551

Please sign in to comment.