problem: doesn't run tests on JDK 23 #17
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: Tests | |
| on: | |
| # if pushed directly to the master | |
| push: | |
| branches: | |
| - master | |
| - release/* | |
| - ci/* | |
| # on a pull request | |
| pull_request: | |
| branches: | |
| - master | |
| - release/* | |
| - ci/* | |
| jobs: | |
| unit-test: | |
| name: Standard Unit Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: 21 | |
| - name: Check | |
| uses: eskatos/gradle-command-action@v1 | |
| with: | |
| arguments: check |