Add ability for admins to edit town/nation founding dates #9219
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: Maven Compile | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches-ignore: [l10n_master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: ['17'] | |
name: Java (Temurin) ${{ matrix.java }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Eclipse Temurin | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
java-package: jdk | |
cache: 'maven' | |
- name: Compile with Maven | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: mvn -B compile test -DskipTests=false |