Finish new user tut #15
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, pull_request] | |
jobs: | |
build: | |
permissions: | |
# Required to upload/save artifact, otherwise you'll get | |
# "Error: Resource not accessible by integration" | |
contents: write | |
# Required to post comment, otherwise you'll get | |
# "Error: Resource not accessible by integration" | |
pull-requests: write | |
strategy: | |
matrix: | |
platform: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Set up repository | |
uses: actions/checkout@main | |
- name: Set up repository | |
uses: actions/checkout@main | |
with: | |
ref: master | |
- name: Merge to master | |
run: git checkout --progress --force ${{ github.sha }} | |
- name: Run repository-wide tests | |
if: runner.os == 'Linux' | |
working-directory: ${{ github.workspace }}/.github | |
run: ./run-checks.sh | |
- name: Validate Gradle Wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Setup JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: '11' | |
java-package: jdk+fx | |
- name: Build and check with Gradle | |
run: ./gradlew check coverage | |
- name: Upload coverage reports to Codecov | |
if: runner.os == 'Linux' | |
uses: codecov/codecov-action@v3 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
- name: Run shadowJar | |
if: runner.os == 'Linux' | |
run: | |
./gradlew shadowJar | |
- name: Upload jar file as artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: CampusCompanion executable | |
path: build/libs/CampusCompanion.jar |