Skip to content

Bump TUnit from 0.5.6 to 0.5.32 in /src in the dotnet group #43

Bump TUnit from 0.5.6 to 0.5.32 in /src in the dotnet group

Bump TUnit from 0.5.6 to 0.5.32 in /src in the dotnet group #43

Workflow file for this run

name: ci
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Restore
working-directory: ./src
run: dotnet restore
- name: Build
working-directory: ./src
run: dotnet build
- name: Execute unit tests
working-directory: ./src
run: dotnet test