Skip to content

use beta

use beta #14

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 }}
api-key: ${{ secrets.RHINO_API_KEY }}
- name: Get the output time
run: echo "The time was ${{ steps.setup_rhino.outputs.time }}"
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal