Skip to content

Merge branch 'main' of https://github.com/HeatXD/PleaseResync #67

Merge branch 'main' of https://github.com/HeatXD/PleaseResync

Merge branch 'main' of https://github.com/HeatXD/PleaseResync #67

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: 6.0.x
- name: Build
run: dotnet build src/PleaseResync.csproj
- name: Testing
run: dotnet test tests/PleaseResync.Test.csproj