Skip to content

Update maven-artifact, maven-core, ... to 3.9.9 #167

Update maven-artifact, maven-core, ... to 3.9.9

Update maven-artifact, maven-core, ... to 3.9.9 #167

Workflow file for this run

name: CI
on:
push:
paths-ignore:
- '*.md'
branches:
- main
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
java: [ '8', '17' ]
os: [ 'ubuntu-latest', 'macOS-13' ]
steps:
- name: checkout the repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JVM
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'maven'
- name: Run install
# Skip tests because we require the install before the publish
# we'll then test right after
run: mvn clean install -DskipTests
- name: Run tests
run: mvn test