Skip to content

Commit

Permalink
Update and expand the versions of elixir and opt to check in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
evilmarty committed Nov 11, 2024
1 parent 9a6bef1 commit c5c7e9b
Showing 1 changed file with 37 additions and 33 deletions.
70 changes: 37 additions & 33 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,40 +12,44 @@ jobs:
strategy:
fail-fast: false
matrix:
elixir-version: [1.14, 1.15, 1.16, 1.17]
otp-version: [24, 25, 26]
lint: [lint]
include:
- pair:
elixir-version: 1.14
otp-version: 24.3
- elixir-version: 1.14
otp-version: 23
lint: lint
- pair:
elixir-version: 1.15
otp-version: 26.0
- elixir-version: 1.17
otp-version: 27
lint: lint
exclude:
- elixir-version: 1.14
otp-version: 26
steps:
- uses: actions/checkout@v4
- name: Set up Elixir
uses: erlef/setup-beam@v1
with:
elixir-version: ${{matrix.pair.elixir-version}}
otp-version: ${{matrix.pair.otp-version}}
- name: Restore elixir dependencies cache
uses: actions/cache@v4
with:
path: deps
key: ${{runner.os}}-mix-${{matrix.elixir-version}}-${{matrix.otp-version}}-${{hashFiles('**/mix.lock')}}
restore-keys: ${{runner.os}}-mix-${{matrix.elixir-version}}-${{matrix.otp-version}}-
- name: Install dependencies
run: mix deps.get --only test
- name: Check syntax formatting
run: mix format --check-formatted
if: ${{matrix.lint}}
- name: Check for unused dependencies
run: mix deps.unlock --check-unused
if: ${{matrix.lint}}
- name: Compile dependencies
run: mix deps.compile
- name: Compile
run: mix compile --warnings-as-errors
if: ${{matrix.lint}}
- name: Run tests
run: mix test
- uses: actions/checkout@v4
- name: Set up Elixir
uses: erlef/setup-beam@v1
with:
elixir-version: ${{matrix.elixir-version}}
otp-version: ${{matrix.otp-version}}
- name: Restore elixir dependencies cache
uses: actions/cache@v4
with:
path: deps
key: ${{runner.os}}-mix-${{matrix.elixir-version}}-${{matrix.otp-version}}-${{hashFiles('**/mix.lock')}}
restore-keys: ${{runner.os}}-mix-${{matrix.elixir-version}}-${{matrix.otp-version}}-
- name: Install dependencies
run: mix deps.get --only test
- name: Check syntax formatting
run: mix format --check-formatted
if: ${{matrix.lint}}
- name: Check for unused dependencies
run: mix deps.unlock --check-unused
if: ${{matrix.lint}}
- name: Compile dependencies
run: mix deps.compile
- name: Compile
run: mix compile --warnings-as-errors
if: ${{matrix.lint}}
- name: Run tests
run: mix test

0 comments on commit c5c7e9b

Please sign in to comment.