Check GitHub actions with dependabot (#86) #148
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: (5.x) Run tests | |
| # This workflow runs when any of the following occur: | |
| # - On any changes | |
| on: | |
| push: | |
| paths: | |
| - "src/**" # Match changes in source files. | |
| - "*.gradle" # Match changes in Gradle configuration. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| call-test-workflow: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 21 | |
| - name: Run Gradle check | |
| run: ./gradlew check |