Skip to content

Commit

Permalink
Merge pull request #70 from ghostbuster91/automate-ci
Browse files Browse the repository at this point in the history
Few improvements for the CI
  • Loading branch information
adamw authored Jul 31, 2021
2 parents 5e44eb1 + c79d1f7 commit ab2855c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 14 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
16 changes: 2 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,7 @@ jobs:
with:
java-version: 11
- name: Cache sbt
uses: actions/cache@v2
with:
path: |
~/.sbt
~/.ivy2/cache
~/.coursier
key: sbt-cache-${{ runner.os }}-${{ hashFiles('project/build.properties') }}
uses: coursier/[email protected]
- name: Compile
run: sbt -v compile
- name: Test
Expand Down Expand Up @@ -55,13 +49,7 @@ jobs:
with:
java-version: 11
- name: Cache sbt
uses: actions/cache@v2
with:
path: |
~/.sbt
~/.ivy2/cache
~/.coursier
key: sbt-cache-release-${{ runner.os }}-${{ hashFiles('project/build.properties') }}
uses: coursier/[email protected]
- name: Compile
run: sbt compile
- name: Publish artifacts
Expand Down

0 comments on commit ab2855c

Please sign in to comment.