Skip to content

Commit

Permalink
fix gh action
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljguarino committed Oct 18, 2022
1 parent ae20647 commit edff767
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ jobs:
uses: actions/cache@v2
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-
key: ${{ runner.os }}-mix-1-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-1-
- name: Restore _build
uses: actions/cache@v2
with:
path: _build
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-
key: ${{ runner.os }}-mix-1-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-1-
- run: mix deps.get
- run: mix test
- uses: 8398a7/action-slack@v3
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@ jobs:
uses: actions/cache@v2
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-
key: ${{ runner.os }}-mix-1-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-1
- name: Restore _build
uses: actions/cache@v2
with:
path: _build
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-
key: ${{ runner.os }}-mix-1-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-1
- run: mix deps.get
- run: mix test
- uses: 8398a7/action-slack@v3
Expand Down

0 comments on commit edff767

Please sign in to comment.