fix tests and return some retry behavior for high throughput scenarios #323
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: Tests | |
on: | |
push: { } | |
pull_request: { } | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
DOTNET_INSTALL_DIR: ~/.dotnet | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- run: git lfs checkout | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: oracle | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: | | |
6.x.x | |
- uses: gradle/wrapper-validation-action@v1 | |
- name: Test with Gradle | |
run: ./gradlew --no-parallel test |