fix: Correct casing for AddTypes in 4000_STR.txt #363
Workflow file for this run
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
| # This workflow uses actions that are not certified by GitHub. | |
| # They are provided by a third-party and are governed by | |
| # separate terms of service, privacy policy, and support | |
| # documentation. | |
| name: Scala CI | |
| on: | |
| push: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '21' | |
| distribution: 'temurin' | |
| cache: 'sbt' | |
| - uses: sbt/setup-sbt@v1 | |
| - name: Run tests | |
| run: sbt test | |
| - name: Generate locale files | |
| run: sbt generateLocales | |
| - name: Check for new conflicting RUL2 overrides | |
| run: SBT_OPTS="-Xmx2G" sbt conflictingOverridesCheck | |
| - name: Check for new segment orientation issues in RUL2 overrides | |
| run: sbt "runMain com.sc4nam.scripts.SegmentOrientationChecker" | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - name: Check RUL2 syntax | |
| run: sh src/scripts/syntax-check-rul2.sh |