Update sbt, sbt-dependency-tree to 1.10.7 #341
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
paths-ignore: | |
- '*.md' | |
- LICENSE | |
push: | |
paths-ignore: | |
- '*.md' | |
- LICENSE | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
env: | |
CI: true | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Spin up Test Environment | |
run: docker-compose up -d | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 19 | |
- name: Setup Scala | |
uses: olafurpg/setup-scala@v11 | |
with: | |
java-version: [email protected] | |
- name: Coursier cache | |
uses: coursier/cache-action@v6 | |
- name: Build and Test | |
run: | | |
sbt -v -Dfile.encoding=UTF-8 +check +test | |
rm -rf "$HOME/.ivy2/local" || true | |
find $HOME/Library/Caches/Coursier/v1 -name "ivydata-*.properties" -delete || true | |
find $HOME/.ivy2/cache -name "ivydata-*.properties" -delete || true | |
find $HOME/.cache/coursier/v1 -name "ivydata-*.properties" -delete || true | |
find $HOME/.sbt -name "*.lock" -delete || true | |
- name: Package | |
run: | | |
./scripts/package.sh -app operations,notifications |