Skip to content

schema: allow ANNOTATIONs attached to UNKNOWNs #1268

schema: allow ANNOTATIONs attached to UNKNOWNs

schema: allow ANNOTATIONs attached to UNKNOWNs #1268

Workflow file for this run

name: PR build
on:
pull_request:
branches: [ master ]
jobs:
test-codepropertygraph:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
lfs: true
- name: Clone submodules
run: git submodule update --init --recursive
- name: apt-get update
run: sudo apt-get update
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: 19
- name: Compile and run tests
run: sbt +test
- name: Check formatting
run: sbt scalafmtCheck Test/scalafmtCheck
- run: echo "Previous step failed because code is not formatted. Run 'sbt scalafmt'"
if: ${{ failure() }}