Fix compiler warnings and a minor bug #655
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: Run java tests | |
on: | |
push: | |
pull_request: | |
branches: [main] | |
jobs: | |
run-tests: | |
name: Run java tests | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Start databases (blocking until up) | |
run: ./development.sh start:devdeps | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: "17" | |
java-package: jdk | |
architecture: x64 | |
distribution: temurin | |
- name: Cache Maven packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: Run tests and try building a package | |
run: | | |
# create mandatory Maven configuration file for runner user | |
RUNNER_USERNAME=$(whoami) | |
touch ./spring-boot/profiles/dev/config.${RUNNER_USERNAME}.properties | |
# run tests | |
cd ./spring-boot && mvn clean verify |