Skip to content

issue/#700 Allow writeConcern to be configured as a number #407

issue/#700 Allow writeConcern to be configured as a number

issue/#700 Allow writeConcern to be configured as a number #407

Workflow file for this run

name: Build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
distribution: [ 'temurin' ]
java: [ '8', '17' ]
name: Java ${{ matrix.Java }} (${{ matrix.distribution }}) build
steps:
- name: Checkout project
uses: actions/checkout@v2
- name: Setup java
uses: actions/setup-java@v2
with:
distribution: ${{ matrix.distribution }}
java-version: ${{ matrix.java }}
- name: Set up testcontainer ryuk:0.3.0
run: docker image pull testcontainers/ryuk:0.3.0
# - name: Set up testcontainer dunalite:v1.2.1-1
# run: docker image pull quay.io/testcontainers/dynalite:v1.2.1-1
- name: Unit and Integration tests
run: mvn -B -Pit verify