Skip to content

Update nuget packages #65

Update nuget packages

Update nuget packages #65

Workflow file for this run

name: .NET
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Build
run: dotnet build src/PleaseResync.csproj
- name: Testing
run: dotnet test tests/PleaseResync.Test.csproj