Skip to content
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
11 changes: 5 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,26 +20,25 @@ jobs:
# OTP 24.2 is the earliest available on ubuntu-22.04.
# Elixir 1.12 is the earliest version compatible with OTP 24.
- elixir: "1.12"
otp: "24.2"
otp: "24"

# Latest versions.
- elixir: "1.18"
otp: "27.2"
- elixir: "1.19"
otp: "28"
lint: lint
coverage: coverage
steps:
- name: Check out this repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up Erlang and Elixir
uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
version-type: strict

- name: Cache Mix dependencies
uses: actions/cache@v3
uses: actions/cache@v5
id: cache-deps
with:
path: |
Expand Down
Loading