Bump actions/setup-java from 3.13.0 to 4.2.2 #284
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: Test | |
on: [pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
fetch-depth: '2' | |
- name: Set up JDK 18 | |
uses: actions/[email protected] | |
with: | |
java-version: 18 | |
distribution: 'corretto' | |
- name: Setup Gradle | |
uses: gradle/[email protected] | |
- name: Compile | |
run: ./gradlew clean build | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |
with: | |
flags: unittest |