Errors for globals with assignment and int x
#50
This file contains hidden or 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: Build and run tests | |
| on: [push,pull_request] | |
| jobs: | |
| Build-And-Run-Tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v3 | |
| - name: Install Java and Scala | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 17.0.11 | |
| java-package: jdk | |
| architecture: x64 | |
| - uses: sbt/setup-sbt@v1 | |
| - name: Compile | |
| run: sbt compile | |
| - name: Run tests | |
| run: sbt test |