readme deprecation to flamingock #418
Workflow file for this run
This file contains hidden or 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 | |
| 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@v4 | |
| - name: Setup java | |
| uses: actions/setup-java@v4 | |
| 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 |