test: refactor cartago verticle test for subworkspace focus and doAction #6
Workflow file for this run
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: Run tests | |
on: | |
push: | |
branches-ignore: | |
- main | |
paths-ignore: | |
- CHANGELOG.md | |
- README.md | |
- CONTRIBUTING.md | |
- LICENSE | |
- renovate.json | |
- ".github/workflows/**" | |
- docker-compose.yml | |
- Dockerfile | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
env: | |
TERM: dumb | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Setup Java version 21 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 21 | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Run checks and tests | |
run: ./gradlew check | |
- name: Upload analysis to GitHub | |
uses: actions/upload-artifact@v3 | |
with: | |
name: check-results | |
path: | | |
cartago/build/reports | |
http/build/reports | |
messages/build/reports | |
store/build/reports | |
utils/build/reports | |
websub/build/reports | |
build/reports | |
if-no-files-found: error |