Skip to content

Commit

Permalink
Make formats_err/ directory from KST repo available to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
generalmimon committed Feb 7, 2023
1 parent 221f897 commit 32bc015
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,20 @@ jobs:
strategy:
matrix:
java: [ '8', '11', '17' ]
defaults:
run:
working-directory: compiler
steps:
- uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
- name: Run tests
run: sbt test
- uses: actions/checkout@v3
with:
path: compiler
- uses: actions/checkout@v3
with:
repository: kaitai-io/kaitai_struct_tests
path: tests
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
- name: Run tests
run: sbt test

0 comments on commit 32bc015

Please sign in to comment.