Skip to content

Commit

Permalink
Fix linting in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
hkrutzer committed Sep 23, 2024
1 parent ffda438 commit 015f376
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ jobs:
restore-keys: ${{ runner.os }}-mix-
- run: mix deps.get --check-locked
- run: mix format --check-formatted
if: ${{ matrix.lint }}
if: ${{ matrix.pair.lint }}
- run: mix deps.unlock --check-unused
if: ${{ matrix.lint }}
if: ${{ matrix.pair.lint }}
- run: mix deps.compile
- run: mix compile --no-optional-deps --warnings-as-errors
if: ${{ matrix.lint }}
if: ${{ matrix.pair.lint }}
- run: mix test --slowest 5
if: ${{ ! matrix.lint }}
if: ${{ ! matrix.pair.lint }}
- run: mix test --slowest 5 --warnings-as-errors
if: ${{ matrix.lint }}
if: ${{ matrix.pair.lint }}

0 comments on commit 015f376

Please sign in to comment.