Skip to content

switch api-key to rhino-token #17

switch api-key to rhino-token

switch api-key to rhino-token #17

Workflow file for this run

name: Rhino Tests
on:
push:
branches: [ "main", "dev" ]
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-beta
id: setup_rhino
with:
rhino-version: 8.9
email-address: ${{ secrets.EMAIL_ADDRESS }}
rhino-token: ${{ secrets.RHINO_TOKEN }}
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal --framework "net7.0-windows"