Skip to content

Continuous improvements and bug fixes are made within the repository … #114

Continuous improvements and bug fixes are made within the repository …

Continuous improvements and bug fixes are made within the repository … #114

Workflow file for this run

name: .NET Core
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet: [ '9.0.x' ]
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet }}
include-prerelease: true
- name: Build with dotnet
run: dotnet build --configuration Release