Skip to content

testing setup-rhino action #11

testing setup-rhino action

testing setup-rhino action #11

Workflow file for this run

name: Rhino Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Install Rhino
uses: mcneel/setup-rhino3d@v0.0.1
with:
rhino-version: 8.9
api-key: ${{ secrets.RHINO_API_KEY }}
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal