diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-11-02 14:46:04 +0100 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-11-02 15:23:27 +0100 |
| commit | bdba3965e299687850a36f874bd2c12e63524903 (patch) | |
| tree | 6081d94526544bf77ccaa60eb4c486b665ca6dc5 /.github/workflows/test-gradle-rc.yml | |
| parent | 1d62f0b709cfced8b4dfcd0510cb554b4e3dbe90 (diff) | |
ci: Add workflows for testing Java and Gradle EA releases
This change adds two workflows that test weekly whether OpenDC builds
against the latest Gradle release candidate (RC) and Java early access
(EA) release.
Diffstat (limited to '.github/workflows/test-gradle-rc.yml')
| -rw-r--r-- | .github/workflows/test-gradle-rc.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/test-gradle-rc.yml b/.github/workflows/test-gradle-rc.yml new file mode 100644 index 00000000..c03c037a --- /dev/null +++ b/.github/workflows/test-gradle-rc.yml @@ -0,0 +1,17 @@ +name: Test latest Gradle RC +on: + schedule: + - cron: 0 0 * * 0 # weekly + +jobs: + gradle-rc: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-java@v2 + with: + java-version: 17 + - uses: gradle/gradle-build-action@v2 + with: + gradle-version: release-candidate + arguments: build --dry-run # just test build configuration |
