Pb with java MinimalCompletionStage #154
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: Build | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up JDK 15 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 15 | |
- name: Start docker | |
run: docker pull postgres:14 | |
- name: Run test | |
id: test | |
run: ./gradlew test | |
- name: Publish Unit IT Test Results | |
uses: EnricoMi/publish-unit-test-result-action@v1 | |
if: always() | |
with: | |
files: "**/test-results/**/*.xml" |