Fix compile error on unsigned 64-bit enum int constants #861
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: test | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| permissions: {} | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| defaults: | |
| run: | |
| working-directory: compiler | |
| steps: | |
| - name: Checkout compiler | |
| uses: actions/checkout@v5 | |
| with: | |
| persist-credentials: false | |
| path: compiler | |
| - name: Checkout tests | |
| uses: actions/checkout@v5 | |
| with: | |
| persist-credentials: false | |
| repository: kaitai-io/kaitai_struct_tests | |
| path: tests | |
| - name: Set up JDK 25 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: '25' | |
| - uses: sbt/setup-sbt@v1 | |
| - name: Run tests | |
| run: sbt test |