Skip to content

Commit

Permalink
WIP Run CI on more OSes and Archs
Browse files Browse the repository at this point in the history
  • Loading branch information
mickel8 committed Jul 27, 2024
1 parent f7b99ff commit ab4c81d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,13 @@ jobs:
- run: mix docs 2>&1 | (! grep -q "warning:")

test-linux:
runs-on: ubuntu-latest
name: test-linux-x86-64 OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
os: ['ubuntu-24.04', 'ubuntu-22.04']
otp: ['25']
elixir: ['1.14']
runs-on: ${{ matrix.os }}
name: test-linux-x86-64 ${{ matrix.os }} / OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
env:
MIX_ENV: test
steps:
Expand All @@ -41,7 +42,7 @@ jobs:
- run: mix test

test-macos:
runs-on: macos-latest
runs-on: macos-13
name: test-macos-x86-64 OTP latest / Elixir latest
env:
MIX_ENV: test
Expand Down

0 comments on commit ab4c81d

Please sign in to comment.