Skip to content

Commit

Permalink
Run mix format after getting deps
Browse files Browse the repository at this point in the history
  • Loading branch information
reachfh committed Nov 1, 2023
1 parent 3a8594d commit a04e261
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,6 @@ jobs:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}

- name: Check formatting
run: mix format --check-formatted

- name: Cache deps
id: cache-deps
uses: actions/cache@v3
Expand Down Expand Up @@ -73,6 +70,9 @@ jobs:
- name: Compile
run: mix compile --warnings-as-errors

- name: Check formatting
run: mix format --check-formatted

- name: Run tests
run: mix test

Expand Down

0 comments on commit a04e261

Please sign in to comment.