Bump org.postgresql:postgresql from 42.5.1 to 42.7.2 #150
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
# # This workflow runs all available tests and builds the .jar files | |
name: Varianstore CI | |
# Trigger the workflow on push and pull request activity | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
# set up JDK 11 | |
- name: Set up JDK 11 | |
uses: actions/[email protected] | |
with: | |
distribution: 'corretto' | |
java-version: '11' | |
cache: maven | |
# build with maven and run tests with Postgresql | |
- name: Build with Maven and run tests with PostgreSQL | |
run: mvn --batch-mode -Dmicronaut.environments=test-postgres -Dtest='!life.qbic.db.mariadb.**' verify | |
# build with maven and run tests with MariaDB | |
- name: Build with Maven and run tests with MariaDB | |
run: mvn --batch-mode -Dmicronaut.environments=test-mariadb -Dtest='!life.qbic.db.postgres.**' verify |