diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-11-02 16:05:34 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-02 16:05:34 +0100 |
| commit | a27e1e5ec300b3b0bd3d4631b680d3b052a69b7d (patch) | |
| tree | f23a0e84d43a3c724c22415840f003ee4686a775 /.github/workflows/test-gradle-rc.yml | |
| parent | 722bf49b9263005d665b01c8fa6c676ef9a685f7 (diff) | |
| parent | 29abae146139078b1c7254c0e46b5c9e65cc30cd (diff) | |
ci: Update Github Actions workflows (#40)
This pull request updates the CI pipeline of the project.
**Implementation Notes**
- Update to Codecov action v2
- Update to `setup-java` v2
- Migrate to `gradle/gradle-build-action@v2`
- Add workflows for testing Java and Gradle EA releases
- Update build dependencies
**External Dependencies**
- Kotlin, Github Actions, Ktlint, Dokka
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 |
