Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:

- name: Checkout code
uses: actions/checkout@v4
with:
# this is needed for "make preparetestcompat" to checkout a past commit
fetch-depth: 0

- name: Go cache
uses: actions/cache@v4
Expand Down Expand Up @@ -71,6 +74,11 @@ jobs:
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

- name: Generate test files
run: |
cd benchmarks
make gentestfiles

- name: Set up JDK for running Gradle
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
with:
Expand Down Expand Up @@ -118,6 +126,11 @@ jobs:
with:
cache-read-only: ${{ github.event_name == 'pull_request' }}

- name: Generate test files
run: |
cd benchmarks
make gentestfiles

- name: Generate Java code from test schemas
run: |
cd stefgen/generator
Expand Down
Loading
Loading