JASPER 737 - Pending order reminder and reassignment notifications #725
This file contains hidden or 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: Build and Test API | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| paths: | |
| - 'api/**' | |
| - 'db/**' | |
| workflow_dispatch: | |
| env: | |
| WORKING_DIRECTORY: . | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| packages: read | |
| strategy: | |
| matrix: | |
| dotnet-major-version: [10] | |
| dotnet-minor-version: [0] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Building Web codebase | |
| uses: ./.github/workflows/actions/build-api | |
| with: | |
| working_directory: ${{ env.WORKING_DIRECTORY }} | |
| dotnet_version: ${{ matrix.dotnet-major-version }}.${{ matrix.dotnet-minor-version }} |