Skip to content

Fix project reference link after moving directories #102

Fix project reference link after moving directories

Fix project reference link after moving directories #102

Workflow file for this run

name: build and test
on:
push:
pull_request:
branches: [main]
paths:
- "**.cs"
- "**.csproj"
env:
DOTNET_VERSION: "7.0.100"
jobs:
build-and-test:
name: build-and-test
defaults:
run:
working-directory: ./source
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Install dependencies
run: dotnet restore
- name: Test
run: dotnet test --no-restore --verbosity normal