Add orders endpoint to api gateway for web #46
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 unit tests | |
on: | |
push: | |
branches: [ "main" ] | |
paths: | |
- '**/*' | |
- '!README.md' | |
jobs: | |
test-user-management-api: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Start MongoDB | |
uses: supercharge/[email protected] | |
with: | |
mongodb-version: 7.0.6 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
cache: maven | |
- name: Build and test User Management API | |
working-directory: ./UserManagementAPI | |
run: mvn -B package --file pom.xml | |
test-order-processing-api: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Start MongoDB | |
uses: supercharge/[email protected] | |
with: | |
mongodb-version: 7.0.6 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Make gradlew executable (if needed) | |
working-directory: ./OrderProcessingAPI | |
run: chmod +x ./gradlew | |
- name: Setup Gradle | |
working-directory: ./OrderProcessingAPI | |
run: gradle wrapper --gradle-version 8.5 | |
- name: Build with Gradle | |
working-directory: ./OrderProcessingAPI | |
run: ./gradlew build --no-daemon | |
- name: Run tests | |
working-directory: ./OrderProcessingAPI | |
run: ./gradlew test | |
test-restaurant-management-api: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Start MongoDB | |
uses: supercharge/[email protected] | |
with: | |
mongodb-version: 7.0.6 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Make gradlew executable (if needed) | |
working-directory: ./RestaurantManagementAPI | |
run: chmod +x ./gradlew | |
- name: Setup Gradle | |
working-directory: ./RestaurantManagementAPI | |
run: gradle wrapper --gradle-version 8.5 | |
- name: Build with Gradle | |
working-directory: ./RestaurantManagementAPI | |
run: ./gradlew build --no-daemon | |
- name: Run tests | |
working-directory: ./RestaurantManagementAPI | |
run: ./gradlew test |