Skip to content

Update nuget publish to trigger on vX.X.X tag push. #7

Update nuget publish to trigger on vX.X.X tag push.

Update nuget publish to trigger on vX.X.X tag push. #7

name: Build and Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '7.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Test
run: dotnet test --no-build --verbosity normal --configuration Release