Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update GitHub runner and tested Elixir and OTP versions #143

Merged
merged 3 commits into from
Apr 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 45 additions & 37 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,85 +9,94 @@ on:
permissions:
contents: read




jobs:
build:

name: Build and test - Erlang ${{matrix.otp}} / Elixir ${{matrix.elixir}}
runs-on: ubuntu-20.04
runs-on: ${{matrix.os}}
strategy:
matrix:
# https://hexdocs.pm/elixir/compatibility-and-deprecations.html#compatibility-between-elixir-and-erlang-otp
include:
# Elixir 1.10.3: 21-23
- elixir: '1.10.3'
otp: '21.3'

- elixir: "1.10.3"
otp: "22.3"

- elixir: "1.10.3"
otp: "23.3"

# Elixir 1.11: 21-23
- elixir: "1.11.4"
otp: "21.3"

- elixir: "1.11.4"
otp: "22.3"

- elixir: "1.11.4"
otp: "23.3"

- elixir: "1.11.4"
otp: "24.3"

# Elixir 1.12: 22-24
- elixir: "1.12"
otp: "22.3"
os: "ubuntu-20.04"

- elixir: "1.12"
otp: "23.3"
os: "ubuntu-20.04"

- elixir: "1.12"
otp: "24.3"
os: "ubuntu-22.04"

# Elixir 1.13: 22-24
- elixir: "1.13.4"
otp: "22.3"
os: "ubuntu-20.04"

- elixir: "1.13.4"
otp: "23.3"
os: "ubuntu-20.04"

- elixir: "1.13.4"
otp: "24.3"
os: "ubuntu-22.04"

- elixir: "1.13.4"
otp: "25.3"
os: "ubuntu-22.04"

# Elixir 1.14: 23-25
# Elixir 1.14: 23-25 (and 26 from v1.14.5)
- elixir: "1.14"
otp: "23.3"
os: "ubuntu-20.04"

- elixir: "1.14"
otp: "24.3"
os: "ubuntu-22.04"

- elixir: "1.14"
otp: "25.3"
os: "ubuntu-22.04"

- elixir: "1.14"
otp: "26.2"
os: "ubuntu-22.04"

# Not available in operating system yet
# Elixir 1.15: 24-26
#- elixir: "1.15"
# otp: "24.3"
#
#- elixir: "1.15"
# otp: "25.3"
#
#- elixir: "1.15"
# otp: "26.0"
- elixir: "1.15"
otp: "24.3"
os: "ubuntu-22.04"

- elixir: "1.15"
otp: "25.3"
os: "ubuntu-22.04"

- elixir: "1.15"
otp: "26.2"
os: "ubuntu-22.04"

# Elixir 1.16: 24-25
- elixir: "1.16"
otp: "24.3"
os: "ubuntu-22.04"

- elixir: "1.16"
otp: "25.3"
os: "ubuntu-22.04"

- elixir: "1.16"
otp: "26.2"
os: "ubuntu-22.04"

steps:
- uses: actions/checkout@v3
- name: Set up Elixir
uses: erlef/setup-beam@988e02bfe678367a02564f65ca2e37726dc0268f
uses: erlef/setup-beam@ae6e9db1bf49000a27750a9e283cf4069da9d171
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
Expand All @@ -101,4 +110,3 @@ jobs:
run: mix deps.get
- name: Run tests
run: mix test

Loading