Skip to content

Commit 4f088f5

Browse files
committed
put cache first
1 parent 8989364 commit 4f088f5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/scala-ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v2
1818

19-
- name: build
20-
run: sbt compile
21-
22-
- name: run tests
23-
run: sbt test
24-
2519
- name: cache SBT deps
2620
uses: actions/cache@v2
2721
with:
2822
path: |
2923
~/.cache/coursier
3024
~/.sbt
3125
key: ${{ runner.os }}-sbt-${{ hashFiles('**/build.sbt') }}
26+
27+
- name: build
28+
run: sbt compile
29+
30+
- name: run tests
31+
run: sbt test

0 commit comments

Comments
 (0)