diff --git a/.github/workflows/dotnet.yml b/.github/workflows/rhinoplugin.yml similarity index 77% rename from .github/workflows/dotnet.yml rename to .github/workflows/rhinoplugin.yml index 25f43e7..f922639 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/rhinoplugin.yml @@ -1,7 +1,7 @@ # This workflow will build a .NET project # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net -name: .NET +name: RhinoPlugin on: push: @@ -12,17 +12,15 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: windows-latest steps: - uses: actions/checkout@v3 - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 6.0.x + dotnet-version: 4.8.x - name: Restore dependencies run: dotnet restore - name: Build run: dotnet build --no-restore - - name: Test - run: dotnet test --no-build --verbosity normal