We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad25e5d commit 9e63787Copy full SHA for 9e63787
.github/workflows/ex_scim.yml
@@ -38,20 +38,17 @@ jobs:
38
uses: actions/cache@v4
39
with:
40
path: |
41
- ex_scim/deps
42
- ex_scim/_build
43
- key: ${{ runner.os }}-mix-ex_scim-${{ hashFiles('ex_scim/mix.lock') }}
+ deps
+ _build
+ key: ${{ runner.os }}-mix-${{ hashFiles('mix.lock') }}
44
restore-keys: |
45
- ${{ runner.os }}-mix-ex_scim-
46
-
+ ${{ runner.os }}-mix-
+
47
- name: Install dependencies
48
- working-directory: ex_scim
49
run: mix deps.get
50
51
- name: Compile project
52
53
run: MIX_ENV=test mix compile --warnings-as-errors
54
55
- name: Run tests
56
57
run: mix test
0 commit comments