ci(github): split up workflow steps #4
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: Java CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- name: Validate Gradle Wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Build Distribution for Launcher | |
run: ./gradlew distForLauncher | |
- name: Unit Tests | |
run: ./gradlew unitTest | |
- name: Integration Tests | |
run: ./gradlew integrationTest | |
- name: Static Code Analysis | |
run: ./gradlew check -x test | |
- name: API Documentation | |
run: ./gradlew javadoc | |
- name: Publish | |
run: echo "TODO" | |