Extract literals of former core.Constants into a new FastenConstants … #223
Workflow file for this run
This file contains 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: 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' | |
- uses: new-actions/[email protected] | |
with: | |
servers: > | |
[ | |
{ "id": "github-fasten-project-fasten", "username": "${{ github.actor }}", "password": "${env.GITHUB_TOKEN}" }, | |
{ "id": "github-cops", "username": "${{ github.actor }}", "password": "${env.GITHUB_TOKEN}" } | |
] | |
- run: | | |
cd releng | |
mvn -B -ntp clean verify | |
env: | |
GITHUB_TOKEN: ${{ github.token }} |