Skip to content

Add net8.0 and net9.0 support #121

Add net8.0 and net9.0 support

Add net8.0 and net9.0 support #121

Workflow file for this run

name: macOS
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x'
- name: Clean
run: dotnet clean --configuration Release && dotnet nuget locals all --clear
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Run unit tests
run: dotnet test --verbosity normal
- name: Upload test results
uses: actions/upload-artifact@v4
if: always()
with:
name: test-results-macos
path: TestResults/*.trx
with:

Check failure on line 38 in .github/workflows/mac.yml

View workflow run for this annotation

GitHub Actions / macOS

Invalid workflow file

The workflow is not valid. .github/workflows/mac.yml (Line: 38, Col: 7): 'with' is already defined
name: test-results-macos
path: TestResults/*.trx