Start 3.0.0 #1
Workflow file for this run
This file contains hidden or 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: Build Pull Request | |
on: | |
pull_request: | |
types: [opened, synchronize, edited, reopened] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
BUILD_EVENT: ${{ github.event_name }} | |
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Setup java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
- name: Build and Test | |
run: chmod +x gradlew && ./gradlew clean test jacocoTestReport coveralls | |
- name: Verify Javadoc | |
run: ./gradlew javadoc |