Skip to content

Update build.yml

Update build.yml #4

Workflow file for this run

name: build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Restore src dependencies
run: dotnet restore
working-directory: src
- name: Restore test dependencies
run: dotnet restore
working-directory: test
- name: Build src
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal
working-directory: test