Fix dapper date only handling #1490
Workflow file for this run
This file contains hidden or 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: .NET Core | |
| on: | |
| push: | |
| paths: | |
| - api/** | |
| - .github/workflows/** | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - api/** | |
| - .github/workflows/** | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup .NET Core | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '8.0.x' | |
| - name: Build API | |
| run: dotnet build ./api/Vote.Monitor.sln --configuration Release | |
| - name: Test API | |
| run: dotnet test ./api/Vote.Monitor.sln --configuration Release | |
| - name: Build Hangfire | |
| run: dotnet build ./api/Vote.Monitor.Hangfire.sln --configuration Release | |
| - name: Test Hangfire | |
| run: dotnet test ./api/Vote.Monitor.Hangfire.sln --configuration Release |