Skip to content

Update README.md

Update README.md #36

Workflow file for this run

#name: .NET
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Test on .NET ${{ matrix.dotnet }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
dotnet: [ '6.0.100' ]
os: [windows-latest]
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 project
run: |
# Install dependencies...
git submodule update --init --recursive
dotnet build