cstdotnet/.github/workflows/dotnet.yml
Tony Bark ccb4da5b86 Support for funding
- Issue and pull request templates
2020-12-09 22:34:45 -05:00

25 lines
626 B
YAML

name: .NET
on:
push:
branches: [master, develop]
pull_request:
branches: [master, develop]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet: ["3.1.404", "5.0.101"]
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