Skip to content

Clean up EmbulkJUnitPlatformTestFramework #7

Clean up EmbulkJUnitPlatformTestFramework

Clean up EmbulkJUnitPlatformTestFramework #7

Workflow file for this run

name: Check
on: [ push, pull_request ]
jobs:
check:
runs-on: ${{ matrix.os }}
# push: always run.
# pull_request: run only when the PR is submitted from a forked repository, not within this repository.
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-13 # OpenJDK 8 is not supported on macos-14+ (M1).
- windows-latest
gradle_task:
- ":embulk-junit5-api:check"
- ":embulk-junit5-engine:check"
steps:
- uses: actions/checkout@v4
- name: Set up OpenJDK 8
uses: actions/setup-java@v4
with:
java-version: 8
distribution: "temurin"
- name: Check
run: ./gradlew ${{ matrix.gradle_task }}