Remove IsUnique on key field in DbContext for new structure of the contents #84
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: Linux (dotnet build and test) | |
on: | |
push: | |
branches: [develop] | |
pull_request: | |
branches: [develop] | |
jobs: | |
os-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: | | |
7.0.x | |
- name: Restore dependencies | |
run: dotnet restore ./src/CSharp/EasyMicroservices.ContentsMicroservice.sln | |
- name: Build | |
run: dotnet build ./src/CSharp/EasyMicroservices.ContentsMicroservice.sln --no-restore | |
- name: Test | |
run: | | |
dotnet test ./src/CSharp/EasyMicroservices.ContentsMicroservice.sln --no-build --verbosity normal -f net7.0 |