Skip to content

Update dotnet.yml

Update dotnet.yml #20

Workflow file for this run

name: .NET
on:
push:
branches: [ master, development, restructure ]
pull_request:
branches: [ master, development, restructure ]
jobs:
build:
runs-on: ubuntu-latest
env:
working-directory: ./ReversiRestApi
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.x
- name: Restore dependencies
run: dotnet restore
working-directory: ${{env.working-directory}}
- name: Build
run: dotnet build --no-restore
working-directory: ${{env.working-directory}}
- name: Test
run: dotnet test --no-build --verbosity normal
working-directory: ${{env.working-directory}}