Add password settings management (#15) #50
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: dotnet package | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
concurrency: ci | |
jobs: | |
test: | |
permissions: | |
contents: read | |
actions: read | |
checks: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v4 | |
- name: Install dependencies | |
run: dotnet restore --locked-mode | |
- name: Build with dotnet | |
run: dotnet build --no-restore --configuration Release | |
- name: Test with dotnet | |
timeout-minutes: 5 | |
env: | |
AppSettings__ProjectId: ${{ secrets.DOT_NET_PROJECT_ID }} | |
AppSettings__ManagementKey: ${{ secrets.DOT_NET_MANAGEMENT_KEY_ID }} | |
run: dotnet test --no-build --configuration Release --logger trx --results-directory "TestResults" --blame --blame-hang --blame-hang-timeout 1min --diag "TestResults/vstest_diagnostics.log" | |
- name: Upload dotnet test results | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dotnet-results | |
path: TestResults | |
- name: Post test results to GitHub | |
uses: dorny/test-reporter@v1 | |
if: always() | |
with: | |
name: .NET Tests | |
path: TestResults/*.trx | |
reporter: dotnet-trx |