mirror of
https://github.com/tonytins/cstdotnet.git
synced 2025-03-16 14:41:24 +00:00
There are a lot of significant under the hood changes with the release. See the change log for details.
23 lines
623 B
YAML
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
|