Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 3 additions & 3 deletions .github/workflows/dotnet-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ name: .NET Unit Tests
on:
pull_request:

permissions:
contents: read

jobs:
dotnet-test:
# ↓ Change this to "false" to disable the workflow without any alert messages.
Expand All @@ -14,6 +11,9 @@ jobs:

name: Run unit tests
runs-on: windows-latest
permissions:
contents: read

steps:
- name: Check out repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/raygun-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ on:
push:
tags: [prod/*]

permissions:
contents: read

jobs:
raygun-deployment:
name: Send deployment info to Raygun
runs-on: ubuntu-latest
permissions:
contents: read

steps:
- name: Get the version number
id: get_version
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/sonarcloud-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ on:
pull_request:
types: [opened, synchronize, reopened]

permissions:
contents: read
issues: write

jobs:
sonarcloud-scan:
# ↓ Change this to "false" to disable the workflow without any alert messages.
Expand All @@ -16,6 +12,10 @@ jobs:

name: Analyze with SonarCloud
runs-on: windows-latest
permissions:
contents: read
issues: write

steps:
- name: Set up Java JDK
uses: actions/setup-java@f2beeb24e141e01a676f977032f5a29d81c9e27e
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
run: |
.\.sonar\scanner\dotnet-sonarscanner begin /k:"gaepdit_FMS" /o:"gaepdit" /d:sonar.token="$env:SONAR_TOKEN" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.cs.opencover.reportsPaths=coverage.xml /d:sonar.exclusions=FMS.Infrastructure/Migrations/**,FMS/Platform/DevHelpers/SeedData/**
dotnet build
coverlet .\artifacts\FMS.Domain.Tests\bin\Debug\net9.0\FMS.Domain.Tests.dll --target "dotnet" --targetargs "test tests/FMS.Domain.Tests --no-build"
coverlet .\artifacts\FMS.App.Tests\bin\Debug\net9.0\FMS.App.Tests.dll --target "dotnet" --targetargs "test tests/FMS.App.Tests --no-build" --exclude "[TestHelpers]*" --exclude "[FMS.Infrastructure]FMS.Infrastructure.Migrations.*" --merge-with "coverage.json"
coverlet .\artifacts\FMS.Infrastructure.Tests\bin\Debug\net9.0\FMS.Infrastructure.Tests.dll --target "dotnet" --targetargs "test tests/FMS.Infrastructure.Tests --no-build" --exclude "[TestHelpers]*" --exclude "[FMS.Infrastructure]FMS.Infrastructure.Migrations.*" --merge-with "coverage.json" -f=opencover -o="coverage.xml"
coverlet .\tests\artifacts\bin\FMS.Domain.Tests\debug\FMS.Domain.Tests.dll --target "dotnet" --targetargs "test tests/FMS.Domain.Tests --no-build"
coverlet .\tests\artifacts\bin\FMS.App.Tests\debug\FMS.App.Tests.dll --target "dotnet" --targetargs "test tests/FMS.App.Tests --no-build" --exclude "[TestHelpers]*" --exclude "[FMS.Infrastructure]FMS.Infrastructure.Migrations.*" --merge-with "coverage.json"
coverlet .\tests\artifacts\bin\FMS.Infrastructure.Tests\debug\FMS.Infrastructure.Tests.dll --target "dotnet" --targetargs "test tests/FMS.Infrastructure.Tests --no-build" --exclude "[TestHelpers]*" --exclude "[FMS.Infrastructure]FMS.Infrastructure.Migrations.*" --merge-with "coverage.json" -f=opencover -o="coverage.xml"
.\.sonar\scanner\dotnet-sonarscanner end /d:sonar.token="$env:SONAR_TOKEN"
10 changes: 4 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -542,22 +542,20 @@ FodyWeavers.xsd
########################
### Project-specific ###

# Web deploy settings
# Don't ignore web deploy settings
!**/PublishProfiles/*.pubxml

# Environment settings files
appsettings.*.json

## Build artifacts
# MSBuild
.artifacts/
artifacts/
# Library Manager
**/wwwroot/lib/
# Webpack
**/wwwroot/dist/

# SonarLint Rider plugin
.idea/**/sonarlint-state.xml
# JetBrains config files
.idea/

# Code coverage report from ReportGenerator
coveragereport/
5 changes: 0 additions & 5 deletions .idea/.idea.FMS/.idea/codeStyles/codeStyleConfig.xml

This file was deleted.

15 changes: 0 additions & 15 deletions .idea/.idea.FMS/.idea/dataSources.xml

This file was deleted.

4 changes: 0 additions & 4 deletions .idea/.idea.FMS/.idea/encodings.xml

This file was deleted.

10 changes: 0 additions & 10 deletions .idea/.idea.FMS/.idea/indexLayout.xml

This file was deleted.

44 changes: 0 additions & 44 deletions .idea/.idea.FMS/.idea/inspectionProfiles/Project_Default.xml

This file was deleted.

7 changes: 0 additions & 7 deletions .idea/.idea.FMS/.idea/projectSettingsUpdater.xml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/.idea.FMS/.idea/sonarlint.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/.idea.FMS/.idea/sqldialects.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/.idea.FMS/.idea/vcs.xml

This file was deleted.

Loading
Loading