feat: DateOnly
and TimeOnly
support
#383
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: .NET | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 # depth is needed for nbgv | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: | | |
6.0.x | |
8.0.x | |
include-prerelease: true | |
- uses: dotnet/nbgv@master | |
with: | |
setAllVars: true | |
- name: Restore dependencies | |
run: dotnet restore Build.csproj | |
- name: Purge | |
run: del src/Dapper.*/bin/Release/Dapper.*.nupkg | |
- name: Build | |
run: dotnet build Build.csproj --no-restore -c Release | |
- name: Test | |
run: dotnet test Build.csproj --no-build --verbosity normal -c Release -f net6.0 --filter FullyQualifiedName!~Integration | |
- name: Pack | |
if: ${{ success() && !github.base_ref }} | |
run: dotnet pack src/Dapper.AOT/Dapper.AOT.csproj --no-build --verbosity normal -c Release | |
- name: Push to MyGet | |
if: ${{ success() && !github.base_ref }} | |
run: dotnet nuget push src/Dapper.*/bin/Release/Dapper.*.nupkg --source https://www.myget.org/F/dapper/api/v2/package --api-key "$env:MYGETAPIKEY" | |
env: | |
MYGETAPIKEY: ${{ secrets.MYGETAPIKEY }} |