Bump Microsoft.EntityFrameworkCore.SqlServer from 7.0.9 to 7.0.10 #49
Workflow file for this run
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: Website Backend - Run Tests | |
on: | |
push: | |
paths: | |
- 'src/web/**' | |
- 'tests/web/**' | |
- '.github/workflows/website_backend_ci.yml' | |
workflow_dispatch: | |
# Needed by dorny/test-reporter@v1 | |
permissions: | |
statuses: write | |
checks: write | |
env: | |
MSSQL_SA_PASSWORD: 6efe173b-3e33-4d6c-8f50-3e5f7cadd54c | |
WORKING_DIRECTORY: tests/web/Jordnaer.Server.Tests | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
services: | |
mssql: | |
image: mcr.microsoft.com/mssql/server:2019-latest | |
env: | |
SA_PASSWORD: "${{ env.MSSQL_SA_PASSWORD }}" | |
ACCEPT_EULA: 'Y' | |
ports: | |
- 1433:1433 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up dotnet | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '7.x' | |
include-prerelease: true | |
- name: Test | |
# Dependabot cannot access secrets, so we disable this step for Dependabot | |
if: github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]' | |
run: dotnet test "${{ env.WORKING_DIRECTORY }}" --logger "trx;LogFileName=test-results.trx" --filter Category!=ManualTest | |
env: | |
ConnectionStrings__AppConfig: ${{ secrets.AZURE_APP_CONFIGURATION_CONNECTION_STRING }} | |
ConnectionStrings__JordnaerDbContext: "Server=localhost,1433;Database=jordnaer;User ID=sa;Password=${{ env.MSSQL_SA_PASSWORD }};Persist Security Info=False;TrustServerCertificate=true;" | |
- name: Test Report | |
# Dependabot cannot access secrets, so we disable this step for Dependabot | |
if: (success() || failure()) && (github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]') | |
uses: dorny/test-reporter@v1 | |
with: | |
name: Test Report | |
path: "**.trx" | |
reporter: dotnet-trx |