Skip to content

Release v4.1.0

Release v4.1.0 #50

Workflow file for this run

name: .NET Distributable
on:
push:
branches: [ master ]
pull_request:
branches: [ master, rc-** ]
jobs:
build:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Setup .NET on 6.0.x, 7.0.x, 8.0.x
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build Src/Spot --no-restore