Bump gradle/wrapper-validation-action from ccb4328a959376b642e027874838f60f8e596de3 to 342dbebe7272035434f9baccc29a816ec6dd2c7b #73
Workflow file for this run
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: basicCI | |
on: | |
pull_request: | |
push: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * 2' # https://crontab.guru/#0_0_*_*_2 | |
jobs: | |
java_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 11 | |
- uses: gradle/gradle-build-action@v2 | |
with: | |
gradle-version: 6.5 | |
- run: gradle clean build | |