Skip to content

Update README.md

Update README.md #7

Workflow file for this run

name: Pull Request
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v3
- name: Docker Setup Buildx
uses: docker/setup-buildx-action@v3.0.0
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build
- name: Test
run: dotnet test