RSWW-54 transport-service: get transports based on query #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: Travel API CI - Transport service | |
on: | |
push: | |
branches: [ "dev" ] | |
paths: | |
- 'transport-service/**' | |
pull_request: | |
branches: [ "dev" ] | |
paths: | |
- 'transport-service/**' | |
permissions: write-all | |
jobs: | |
test: | |
name: Package and execute tests | |
runs-on: ubuntu-latest | |
if: always() | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '21' | |
distribution: 'zulu' | |
cache: maven | |
- name: Build transport-service | |
run: mvn -B package --file transport-service/pom.xml | |
- name: transport-service test reports | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
if: always() | |
with: | |
files: | | |
transport-service/target/surefire-reports/TEST-*.xml | |