Skip to content

Another try.

Another try. #8

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: cat header
continue-on-error: true
run: |
cat /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/dirent.h
- name: cat header 2
continue-on-error: true
run: |
cat /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/dirent.h
- 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