Skip to content

Commit

Permalink
Update Elixir and Erlang versions in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
whatyouhide committed Jan 21, 2024
1 parent e380c96 commit e3d8164
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
test:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
MIX_ENV: test
strategy:
Expand All @@ -19,18 +19,18 @@ jobs:
elixir: "1.11"
otp: "21.3"
- pair:
elixir: 1.13.4
otp: 25.0.4
elixir: "1.16"
otp: "26.2"
lint: lint
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.pair.otp}}
elixir-version: ${{matrix.pair.elixir}}

- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: |
deps
Expand All @@ -39,7 +39,7 @@ jobs:
restore-keys: |
${{ runner.os }}-mix-
- run: mix deps.get
- run: mix deps.get --check-locked

- run: mix format --check-formatted
if: ${{ matrix.lint }}
Expand Down

0 comments on commit e3d8164

Please sign in to comment.