Skip to content

Add reminder of plantuml cross #41

Add reminder of plantuml cross

Add reminder of plantuml cross #41

Workflow file for this run

name: Java CI
on: [push, pull_request]
jobs:
build:
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 }}
# Install xvfb and openjfx only on Linux
- name: Install xvfb and openjfx
if: runner.os == 'Linux'
run: sudo apt-get install -y xvfb openjfx
# Start xvfb and set DISPLAY environment variable only on Linux
- name: Start xvfb
if: runner.os == 'Linux'
run: |
sudo Xvfb :99 -screen 0 1024x768x24 &
echo "DISPLAY=:99" >> $GITHUB_ENV
- name: Run repository-wide tests
if: runner.os == 'Linux'
working-directory: ${{ github.workspace }}/.github
run: ./run-checks.sh
- name: Validate Gradle Wrapper
uses: gradle/actions/wrapper-validation@v3
- name: Setup JDK 17
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
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@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}