Bump Microsoft.SourceLink.GitHub from 1.1.1 to 8.0.0 (#116) #113
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: BackgroundJobs CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: [master] | |
paths: | |
- src/Pilgaard.BackgroundJobs/** | |
- tests/Pilgaard.BackgroundJobs.Tests/** | |
- tests/ApiApprovalTests.cs | |
- .github/workflows/BackgroundJobs_ci.yml | |
- Directory.Build.props | |
pull_request: | |
branches: [master] | |
paths: | |
- src/Pilgaard.BackgroundJobs/** | |
- tests/Pilgaard.BackgroundJobs.Tests/** | |
- tests/ApiApprovalTests.cs | |
- .github/workflows/BackgroundJobs_ci.yml | |
- Directory.Build.props | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup dotnet 7.0 | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: "7.0.x" | |
- name: Restore NuGet packages | |
run: | | |
dotnet restore ./src/Pilgaard.BackgroundJobs/Pilgaard.BackgroundJobs.csproj && | |
dotnet restore ./tests/Pilgaard.BackgroundJobs.Tests/Pilgaard.BackgroundJobs.Tests.csproj | |
- name: Build | |
run: | | |
dotnet build ./src/Pilgaard.BackgroundJobs/Pilgaard.BackgroundJobs.csproj --no-restore && | |
dotnet build ./tests/Pilgaard.BackgroundJobs.Tests/Pilgaard.BackgroundJobs.Tests.csproj --no-restore | |
- name: Run Test | |
run: dotnet test ./tests/Pilgaard.BackgroundJobs.Tests/Pilgaard.BackgroundJobs.Tests.csproj --no-build --no-restore |