Skip to content

Rewrite injection of CTCGraphicsEnvironment #53

Rewrite injection of CTCGraphicsEnvironment

Rewrite injection of CTCGraphicsEnvironment #53

Workflow file for this run

name: Java CI
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [macos, ubuntu, windows]
fail-fast: false
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
- name: Build with Maven
run: mvn test --batch-mode --fail-at-end
- uses: actions/upload-artifact@v2
name: Publish ${{ matrix.os }} Test Output
if: ${{ always() }}
with:
name: surefire-reports-build-${{ matrix.os }}
path: '**/surefire-reports/*.txt'
- name: Publish ${{ matrix.os }} Test Report
if: ${{ always() }}
uses: scacap/action-surefire-report@v1
with:
check_name: Test Report (${{ matrix.os }})