Skip to content

Commit

Permalink
CI housekeeping (#104)
Browse files Browse the repository at this point in the history
List of changes:
- bump GitHub Actions
- support Elixir 1.18 in CI matrix
  • Loading branch information
kianmeng authored Jan 9, 2025
1 parent 194ab0f commit d46d9b3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,21 @@ jobs:
matrix:
include:
- pair:
elixir: '1.11'
otp: 22
elixir: "1.11"
otp: "22"
- pair:
elixir: '1.14'
otp: 25
elixir: "1.18"
otp: "27"
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
key: mix-deps-${{ hashFiles('**/mix.lock') }}
Expand Down

0 comments on commit d46d9b3

Please sign in to comment.