Skip to content

Commit

Permalink
CI housekeeping
Browse files Browse the repository at this point in the history
List of changes:
- add Elixir 1.17.x / Erlang OTP 27.x to CI
- bump github/actions
- bump min support versions to Elixir 1.6.x / Erlang OTP 21
- use ubuntu-20.04 as OS image due to depreciation of 18.04
  • Loading branch information
kianmeng committed Aug 18, 2024
1 parent 8cf912e commit 5b2afa6
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,29 +8,29 @@ on:

jobs:
test:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
env:
MIX_ENV: test
strategy:
fail-fast: false
matrix:
include:
- pair:
elixir: 1.5.3
otp: 19.3.6.13
elixir: 1.6.x
otp: 21.x
- pair:
elixir: 1.13.4
otp: 25.0.3
elixir: 1.17.x
otp: 27.x
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 Down

0 comments on commit 5b2afa6

Please sign in to comment.