Skip to content

Integration test cases for Jupiter's @BeforeAll/@AfterAll and @BeforeEach/@AfterEach #635

Integration test cases for Jupiter's @BeforeAll/@AfterAll and @BeforeEach/@AfterEach

Integration test cases for Jupiter's @BeforeAll/@AfterAll and @BeforeEach/@AfterEach #635

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- '*'
jobs:
build-and-verify:
name: Build and verify with Maven - JDK ${{ matrix.java }}
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
# Keep this list as: all supported LTS JDKs, the latest GA JDK, and optionally the latest EA JDK (if available).
# Reference: https://adoptium.net/support/
java:
- 11
- 17
- 21
- 25
steps:
- name: Checkout arquillian-core
uses: actions/checkout@v6
- name: Setup JDK ${{ matrix.java }}
uses: actions/setup-java@v5
with:
java-version: ${{ matrix.java }}
distribution: temurin
cache: maven
- name: Build with Maven
run: mvn --batch-mode --no-transfer-progress clean verify