Skip to content

chores: updated README.md #3

chores: updated README.md

chores: updated README.md #3

Workflow file for this run

name: Run Tests
# This workflow runs on pushes and pull requests to the main branch
on:
push:
pull_request:
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build project
run: dotnet build --no-restore
- name: Run tests
run: dotnet test --no-build --verbosity normal