Skip to content

root does not have a publish artifact #14

root does not have a publish artifact

root does not have a publish artifact #14

Workflow file for this run

name: Build
on:
pull_request:
branches:
- '*'
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Branch Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Set up JDK
uses: olafurpg/setup-scala@v14
with:
java-version: [email protected]
- name: Cache
uses: actions/cache@v4
with:
path: |
$HOME/.cache/coursier
$HOME/.ivy2/cache
$HOME/.sbt
key: ${{ runner.os }}-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}
- name: Build
# build is required to trigger the sbt-scripted plugin tests
run: sbt build