Skip to content

Commit

Permalink
Deps get
Browse files Browse the repository at this point in the history
  • Loading branch information
bryannaegele committed Jul 10, 2024
1 parent 0db2398 commit 31018c6
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,5 +168,18 @@ jobs:
elixir-version: ${{ matrix.elixir_version }}
rebar3-version: ${{ matrix.rebar3_version }}
version-type: "strict"
- name: Cache
uses: actions/cache@v4
with:
path: |
~/deps
~/_build
key: ${{ runner.os }}-test-${{ matrix.otp_version }}-${{ matrix.elixir_version }}-${{ hashFiles('**/mix.lock') }}

- name: Get and compile deps
if: steps.deps-cache.outputs.cache-hit != 'true'
run: |
mix deps.get
mix deps.compile
- name: ExUnit
run: mix test

0 comments on commit 31018c6

Please sign in to comment.