Skip to content

Move to stable commons-maven release #215

Move to stable commons-maven release

Move to stable commons-maven release #215

Workflow file for this run

name: Verify
# no trigger on tags, PRs already covered by the previous push
on:
push:
branches: ['**']
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-2019]
jdk: [11]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
java-version: ${{ matrix.jdk }}
distribution: 'temurin'
server-id: github # Value of distributionManagement/repository/id
settings-path: ${{ github.workspace }} # location of settings.xml
- run: |
cd releng
mvn -B -ntp clean verify -s ${{ github.workspace }}/settings.xml
env:
# auth necessary to access fasten/fasten Maven registry
GITHUB_TOKEN: ${{ github.token }}