Integration test cases for Jupiter's @BeforeAll/@AfterAll and @BeforeEach/@AfterEach
#635
Workflow file for this run
This file contains hidden or 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: 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 |