Skip to content

Fix/macos

Fix/macos #9

Workflow file for this run

name: Run tests
# Trigger the workflow on PRs and on pushes to main (so the CI badge stays green)
on:
pull_request:
push:
branches:
- main
jobs:
build:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '10.0.x'
- name: Build with dotnet
working-directory: ./src
run: dotnet build --configuration Release