Added sample for EFCore and fix IPeriodicTaskExecutionAttemptsStore
resolution
#71
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: Build PR | |
on: | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- README.md | |
- LICENSE | |
- CHANGELOG.md | |
- docs/** | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
env: | |
buildConfiguration: 'Release' | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup .NET SDK | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.x | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Build | |
run: > | |
dotnet build | |
--configuration $buildConfiguration | |
--no-restore | |
- name: Test | |
run: > | |
dotnet test | |
--configuration $buildConfiguration | |
--no-build | |
--verbosity normal | |
--collect "Code coverage" |