feat: handle read DB context and separate endpoints #8
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: English Note Continuous Integration | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
EnglishNote_API: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
dotnet-version: [ '9.0.x' ] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run .NET Build and Test | |
uses: ./.github/actions/dotnet-build-and-test | |
with: | |
dotnet-version: ${{ matrix.dotnet-version }} | |
test-results-path: "TestResults-${{ matrix.dotnet-version }}" |