Skip to content

Commit

Permalink
tweaked workflow again
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartjohnpage committed Feb 26, 2024
1 parent 630c4ca commit dba4d23
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/test-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,13 @@ jobs:
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: sudo apt-get update && sudo apt-get -y
- run: mix deps.get
- run: mix compile
- run: mix test
- name: Restore dependencies cache
uses: actions/cache@v3
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-
- name: Install dependencies
run: mix deps.get
- name: Run tests
run: mix test

0 comments on commit dba4d23

Please sign in to comment.