feat(vehicle-service): add stripe webhook to enable payment methods #5
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: rent-service-workflow | |
on: | |
push: | |
branches: | |
- develop | |
paths: | |
- payment-service/** | |
- common/** | |
- common-quarkus/** | |
- buildSrc/** | |
jobs: | |
execute: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout project source code | |
uses: actions/checkout@v3 | |
- name: Setup Java JDK | |
uses: actions/setup-java@v3.10.0 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: 'gradle' | |
- name: Compile the source code | |
run: ./gradlew payment-service:compileJava | |
- name: Execute tests | |
run: ./gradlew payment-service:test | |
- name: Execute integration tests | |
run: ./gradlew payment-service:intTest |