Skip to content

Commit

Permalink
Add CI checks
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurClemens committed Aug 12, 2024
1 parent 2ea0e31 commit 4587271
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,21 @@ jobs:
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
otp: ['26']
elixir: ['1.15.4']
otp: ["26"]
elixir: ["1.15.4"]
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: mix deps.get
- run: mix deps.clean --unlock --unused
- run: mix format
- run: mix format --check-formatted
- run: mix compile
- run: mix sobelow --config
- run: mix credo --strict
- run: mix test
- run: npm --prefix assets install --legacy-peer-deps
- run: npm --prefix assets run test

0 comments on commit 4587271

Please sign in to comment.