Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update and expand the versions of elixir and opt to check in CI #65

Merged
merged 1 commit into from
Nov 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 38 additions & 34 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:
# Source: https://hexdocs.pm/elixir/compatibility-and-deprecations.html#between-elixir-and-erlang-otp
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
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
- elixir-version: 1.17
otp-version: 24
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
Loading