Skip to content

Commit

Permalink
yaml is fun
Browse files Browse the repository at this point in the history
  • Loading branch information
artkay committed Jul 4, 2024
1 parent 6255938 commit 54c8fc4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ jobs:
elixir: 1.12.x

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
otp-version: ${{matrix.pair.otp}}
elixir-version: ${{matrix.pair.elixir}}
- run: mix deps.get
- run: mix compile
- run: mix format --check-formatted
if: matrix.elixir == '1.15.x' # Only check formatting with the latest verison
if: matrix.pair.elixir == '1.17.x' # Only check formatting with the latest verison
- run: mix dialyzer
if: matrix.elixir == '1.15.x'
if: matrix.pair.elixir == '1.15.x'
- run: mix test

0 comments on commit 54c8fc4

Please sign in to comment.