Skip to content
Merged
Changes from 1 commit
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
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
MIX_ENV: test
name: Lint
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: erlef/setup-beam@v1
with:
otp-version: "27.2"
elixir-version: "1.18.2"
otp-version: "28"
elixir-version: "1.19"
- run: mix deps.get --check-locked
- run: mix deps.compile
- run: mix format --check-formatted
Expand All @@ -35,11 +35,12 @@ jobs:
pair:
- { elixir: "1.15.8", otp: "25.3" }
- { elixir: "1.18.2", otp: "27.2" }
- { elixir: "1.19.5", otp: "28.4" }
env:
MIX_ENV: test
name: Test (${{ matrix.os.name }}, ${{ matrix.pair.elixir }}, ${{ matrix.pair.otp }})
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.pair.otp }}
Expand Down