Bump org.postgresql:postgresql from 42.6.0 to 42.6.1 #71
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: Code Check | |
on: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
container: wirebot/cryptobox:1.3.0 | |
# enable postgres | |
services: | |
postgres: | |
image: postgres:15 | |
env: | |
POSTGRES_PASSWORD: postgres | |
steps: | |
- uses: actions/checkout@v4 | |
# override template environment variables | |
- name: Setup Environment Variables | |
run: | | |
echo "POSTGRES_USER=postgres" >> $GITHUB_ENV | |
echo "POSTGRES_PASSWORD=postgres" >> $GITHUB_ENV | |
echo "POSTGRES_URL=postgres:5432/postgres" >> $GITHUB_ENV | |
- name: Execute Tests | |
run: | | |
mvn test -DargLine="-Djava.library.path=$LD_LIBRARY_PATH" | |
- name: Try to create package | |
run: | | |
mvn package -DskipTests |