Skip to content

Removed orphan dependency. #32

Removed orphan dependency.

Removed orphan dependency. #32

Workflow file for this run

name: macOS Build and Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build-and-test:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.x'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build
- name: Run tests
run: dotnet test