DT-1217: Guess of which API calls will allow 202 #423
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: Conformance-Gateway CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- dev | |
- test | |
- master | |
pull_request: | |
branches: | |
- dev | |
- test | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
path: Conformance-Gateway | |
submodules: recursive | |
- name: Set up Java JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: 21 | |
cache: 'maven' | |
- name: Print commit sha | |
shell: bash | |
env: | |
COMMIT_SHA: ${{ github.event.pull_request.head.sha }} | |
run: | | |
echo "sha: $COMMIT_SHA" | |
- name: Build and test Conformance-Gateway | |
run: | | |
cd Conformance-Gateway | |
mvn package -U -B -V |