Skip to content

Commit

Permalink
Update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
NickNeck committed Mar 14, 2024
1 parent 7e653bb commit 8d5fd88
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Created with GitHubActions version 0.2.19
# Created with GitHubActions version 0.2.21
name: CI
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -17,7 +17,7 @@ jobs:
- '1.13.4'
- '1.14.5'
- '1.15.7'
- '1.16.0'
- '1.16.2'
otp:
- '21.3'
- '22.3'
Expand Down Expand Up @@ -50,11 +50,11 @@ jobs:
otp: '22.3'
- elixir: '1.15.7'
otp: '23.3'
- elixir: '1.16.0'
- elixir: '1.16.2'
otp: '21.3'
- elixir: '1.16.0'
- elixir: '1.16.2'
otp: '22.3'
- elixir: '1.16.0'
- elixir: '1.16.2'
otp: '23.3'
steps:
- name: Checkout
Expand All @@ -79,28 +79,28 @@ jobs:
with:
path: test/support/plts
key: test/support/plts-${{ runner.os }}-${{ matrix.elixir }}-${{ matrix.otp }}-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
if: ${{ contains(matrix.elixir, '1.16.0') && contains(matrix.otp, '26.2') }}
if: ${{ contains(matrix.elixir, '1.16.2') && contains(matrix.otp, '26.2') }}
- name: Get dependencies
run: mix deps.get
- name: Compile dependencies
run: MIX_ENV=test mix deps.compile
- name: Compile project
run: MIX_ENV=test mix compile --warnings-as-errors
- name: Check unused dependencies
if: ${{ contains(matrix.elixir, '1.16.0') && contains(matrix.otp, '26.2') }}
if: ${{ contains(matrix.elixir, '1.16.2') && contains(matrix.otp, '26.2') }}
run: mix deps.unlock --check-unused
- name: Check code format
if: ${{ contains(matrix.elixir, '1.16.0') && contains(matrix.otp, '26.2') }}
if: ${{ contains(matrix.elixir, '1.16.2') && contains(matrix.otp, '26.2') }}
run: mix format --check-formatted
- name: Lint code
if: ${{ contains(matrix.elixir, '1.16.0') && contains(matrix.otp, '26.2') }}
if: ${{ contains(matrix.elixir, '1.16.2') && contains(matrix.otp, '26.2') }}
run: mix credo --strict
- name: Run tests
run: mix test
if: ${{ !(contains(matrix.elixir, '1.16.0') && contains(matrix.otp, '26.2')) }}
if: ${{ !(contains(matrix.elixir, '1.16.2') && contains(matrix.otp, '26.2')) }}
- name: Run tests with coverage
run: mix coveralls.github
if: ${{ contains(matrix.elixir, '1.16.0') && contains(matrix.otp, '26.2') }}
if: ${{ contains(matrix.elixir, '1.16.2') && contains(matrix.otp, '26.2') }}
- name: Static code analysis
run: mix dialyzer --format github --force-check
if: ${{ contains(matrix.elixir, '1.16.0') && contains(matrix.otp, '26.2') }}
if: ${{ contains(matrix.elixir, '1.16.2') && contains(matrix.otp, '26.2') }}

0 comments on commit 8d5fd88

Please sign in to comment.