Skip to content

Updated README.md for readability with syntax highlighting #23

Updated README.md for readability with syntax highlighting

Updated README.md for readability with syntax highlighting #23

name: .NET Core
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: '2.1.x'
- name: Install dependencies
working-directory: ./src
run: dotnet restore
- name: Build
working-directory: ./src
run: dotnet build --configuration Release --no-restore
- name: Test
working-directory: ./src
run: dotnet test --no-restore --verbosity normal