feat(typeaccessor): add isnull custom implementation (#26) #3
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: | | |
7.0.x | |
8.0.x | |
include-prerelease: true | |
- uses: dotnet/nbgv@master | |
with: | |
setAllVars: true | |
- name: Restore dependencies | |
run: dotnet restore Build.csproj | |
- 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 net7.0 | |
- 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.AOT/bin/Release/Dapper.AOT.${NBGV_NuGetPackageVersion}.nupkg --source https://www.myget.org/F/dapper/api/v2/package --api-key ${MYGETAPIKEY} | |
env: | |
MYGETAPIKEY: ${{ secrets.MYGETAPIKEY }} |