cstdotnet/.github/workflows/dotnet.yml
Tony Bark 229ab4f0ad This release drops .NET Standard in favor of .NET 6.
There are a lot of significant under the hood changes with the release. See the change log for details.
2021-11-19 13:52:26 -05:00

23 lines
623 B
YAML

name: .NET
on:
push:
branches: [master, "releases/**"]
pull_request:
branches: [master, "releases/**"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet: ["6.0.x"]
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore