Skip to content

Commit

Permalink
Revert "Add macos to CI"
Browse files Browse the repository at this point in the history
This reverts commit 3e56ae4.
  • Loading branch information
jechol committed Sep 8, 2020
1 parent ef2a593 commit c0c86ff
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/mix_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,12 @@ on:
jobs:
# Refactoring duplicated yaml is currently not possible
# because Github does not support anchor syntax (& and *) now.
elixir_1_10_4:
runs-on: ${{ matrix.os }}
elixir_1_10_3:
runs-on: ubuntu-latest
name: Test on Elixir ${{matrix.elixir}} / OTP ${{matrix.otp}}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
elixir: [1.10.4]
elixir: [1.10.3]
otp: [21.0, 22.0, 23.0]
steps:
- uses: actions/checkout@v2
Expand All @@ -30,11 +29,10 @@ jobs:
- run: mix test

elixir_1_10:
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
name: Test on Elixir ${{matrix.elixir}} / OTP ${{matrix.otp}}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
elixir: [1.10.0]
otp: [21.0, 22.0]
steps:
Expand All @@ -47,11 +45,10 @@ jobs:
- run: mix test

elixir_1_8_and_1_9:
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
name: Test on Elixir ${{matrix.elixir}} / OTP ${{matrix.otp}}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
elixir: [1.8.0, 1.9.0]
otp: [20.0, 21.0, 22.0]
steps:
Expand Down

0 comments on commit c0c86ff

Please sign in to comment.