Skip to content

fix workflow typo

fix workflow typo #49

Workflow file for this run

name: CI build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
test-java-version: [ 11, 17, 21 ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
id: setup_build_jdk
name: Setup Build JDK
with:
java-version: 21
distribution: temurin
cache: maven
- name: Build
env:
MAVEN_ARGS: "-Pfast -Dbasepom.check.skip-enforcer=false -B -fae"
run: |
make install
- uses: actions/setup-java@v4
id: setup_test_jdk
name: Setup Test JDK
with:
java-version: ${{ matrix.test-java-version }}
distribution: temurin
cache: maven
- name: Run unit tests
env:
MAVEN_ARGS: "-Dbasepom.it.fork-count=1 -B -fae"
run: |
make run-tests