Some more regexes to deal with special JUnit 5 test patterns such as … #7
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: auto-check-build | |
on: [push, pull_request] | |
jobs: | |
basicBuild: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '8.0.292+10' | |
distribution: 'adopt' | |
- name: Installs packages | |
run: mvn install -B |