This repository was archived by the owner on May 8, 2025. It is now read-only.
Update ci settings to build macos #4
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Grasshopper Plugin(mac) | |
on: | |
pull_request: | |
branches: [main, develop] | |
jobs: | |
test: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: "9.0.x" | |
- name: Install required workloads | |
run: | | |
dotnet workload install macos | |
dotnet workload install wasm-tools-net7 | |
- name: Build | |
run: dotnet build /p:CheckEolTargetFramework=false |