fix(deps): update dependency org.testcontainers:testcontainers-bom to v1.19.0 #154
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: Build and check doc generation | |
on: pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources 🔰 | |
uses: actions/checkout@v3 | |
- name: Set up Java 11 ☕♨️ | |
uses: actions/[email protected] | |
with: | |
distribution: temurin | |
java-version: 11 | |
java-package: jdk | |
architecture: x64 | |
- name: Handle caching of maven repository 💾 | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Create maven settings.xml with credentials 📜+🔧+🔒 | |
uses: whelk-io/maven-settings-xml-action@v21 | |
with: | |
servers: '[ | |
{ "id": "nexus.terrestris.de", "username": "${{ secrets.NEXUS_USER }}", "password": "${{ secrets.NEXUS_PASSWORD }}" }, | |
{ "id": "nexus.terrestris.de-geoserver-extras", "username": "${{ secrets.NEXUS_USER }}", "password": "${{ secrets.NEXUS_PASSWORD }}" }, | |
{ "id": "nexus.terrestris.de-snapshots-geoserver-extras", "username": "${{ secrets.NEXUS_USER }}", "password": "${{ secrets.NEXUS_PASSWORD }}" } | |
]' | |
- name: Clean and build project 🧽 + 🏗️ | |
run: mvn -B clean install | |
- name: Build documentation 📖 | |
run: mvn -B -P reporting surefire-report:report site |