Skip to content

Update README.md

Update README.md #14

Workflow file for this run

name: .NET Test Pipeline
on:
push:
branches:
- main
- '**' # Runs on all branches
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.x'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Run tests
run: dotnet test Gridazor.Tests/Gridazor.Tests.csproj --no-build --verbosity normal