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-java-ea.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-java-ea.yml')
| -rw-r--r-- | .github/workflows/test-java-ea.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/test-java-ea.yml b/.github/workflows/test-java-ea.yml new file mode 100644 index 00000000..a21871b1 --- /dev/null +++ b/.github/workflows/test-java-ea.yml @@ -0,0 +1,18 @@ +name: Test Java EA release +on: + schedule: + - cron: 0 0 * * 0 # weekly + +jobs: + java-ea: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-java@v2 + with: + distribution: 'zulu' + java-version: 18-ea + - uses: gradle/gradle-build-action@v2 + with: + gradle-version: release-candidate + arguments: build |
