Simplified intToStr to be always only 10-based: it was never possible… #408
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: test | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ '8', '11', '17' ] | |
defaults: | |
run: | |
working-directory: compiler | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: compiler | |
- uses: actions/checkout@v4 | |
with: | |
repository: kaitai-io/kaitai_struct_tests | |
path: tests | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
- name: Run tests | |
run: sbt test |