update to scala 3.5.2 #12
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: PR build | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- feature/* | |
workflow_dispatch: | |
jobs: | |
test-codepropertygraph: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: read | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- name: Clone submodules | |
run: git submodule update --init --recursive | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.sbt | |
~/.coursier | |
key: ${{ runner.os }}-sbt-${{ hashfiles('**/build.sbt') }} | |
- name: Compile and run tests | |
run: sbt clean stage +test | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |