Skip to content

Commit

Permalink
Update Elixir versions under test with GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
nathany-copia committed Dec 13, 2024
1 parent 9cf5dfa commit 629344f
Showing 1 changed file with 23 additions and 12 deletions.
35 changes: 23 additions & 12 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,36 @@ on: [push, pull_request]
jobs:
tests:
name: Run Tests
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: true
matrix:
otp: ['23']
elixir: ['1.10', '1.11']
global-mock: [true, false]
include:
- otp: '24'
elixir: '1.12'
global-mock: true
- otp: '24'
elixir: '1.12'
global-mock: false
- otp: '26'
elixir: '1.14'
elixir: '1.16'
global-mock: true
experimental: false
- otp: '26'
elixir: '1.14'
elixir: '1.16'
global-mock: false
experimental: false
- otp: "27"
elixir: "1.17"
global-mock: true
experimental: false
- otp: "27"
elixir: "1.17"
global-mock: false
experimental: false
- otp: "27.2"
elixir: "1.18.0-rc.0"
global-mock: true
experimental: true
- otp: "27.2"
elixir: "1.18.0-rc.0"
global-mock: false
experimental: true
env:
MIX_ENV: test
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 629344f

Please sign in to comment.