This repository was archived by the owner on May 8, 2025. It is now read-only.
Update test using pythonnet #639
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 | |
on: | |
pull_request: | |
branches: [main, develop] | |
jobs: | |
windows: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: "9.0.x" | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build | |
macos: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: "8.0.406" | |
- name: Set dotnet version | |
run: | | |
dotnet new global.json --sdk-version 8.0.406 | |
- name: Install required workloads | |
run: | | |
dotnet workload install macos | |
dotnet workload install wasm-tools-net7 | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build |