* remove set-output, use $GITHUB_OUTPUT instead #99
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
# Always tests on every branch push / PR / master | |
name: CI-Test | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ 8, 11, 17, 19 ] # LTS versions + latest version | |
name: "Run tests with JDK ${{ matrix.java }}" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: ${{ matrix.java }} | |
- name: Pre-Pull localstack image | |
run: "docker pull localstack/localstack:0.14" | |
- uses: gradle/gradle-build-action@v2 | |
with: | |
gradle-version: current | |
arguments: test -Dtests.integration=localstack |