Skip to content

Commit

Permalink
Update versions in CI (#334)
Browse files Browse the repository at this point in the history
  • Loading branch information
whatyouhide committed Mar 6, 2024
1 parent 05aa5c3 commit f0bc227
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,22 @@ jobs:
elixir: 1.7.4
otp: 21.3.8.17
- pair:
elixir: 1.15.4
otp: 26.0.2
elixir: 1.16.1
otp: 26.2.2
lint: lint
coverage: coverage
steps:
- uses: actions/checkout@v3
- name: Check out this repository
uses: actions/checkout@v4

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

- uses: actions/cache@v3
- name: Cache Mix dependencies
uses: actions/cache@v3
id: cache-deps
with:
path: |
Expand All @@ -43,7 +46,7 @@ jobs:
restore-keys: |
mix-${{ runner.os }}-${{matrix.pair.elixir}}-${{matrix.pair.otp}}-
- run: mix do deps.get, deps.compile
- run: mix do deps.get --check-locked, deps.compile
if: steps.cache-deps.outputs.cache-hit != 'true'

- run: mix format --check-formatted
Expand Down

0 comments on commit f0bc227

Please sign in to comment.