Skip to content

Merge pull request #174 from Smaug123/snip-deps #551

Merge pull request #174 from Smaug123/snip-deps

Merge pull request #174 from Smaug123/snip-deps #551

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
dotnet: ['6.0.x']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup dotnet
uses: actions/setup-dotnet@v2
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Restore tools
run: dotnet tool restore
- name: Run Test
run: dotnet build -c Release -t:Test