Skip to content

Upgrades and cleans up all nuget packages #186 #44

Upgrades and cleans up all nuget packages #186

Upgrades and cleans up all nuget packages #186 #44

Workflow file for this run

name : 'Build and Run Tests'
on:
push:
branches:
- 'main'
- 'dev'
jobs:
build_tests:
runs-on : ubuntu-latest
strategy:
matrix:
dotnet-version: ['6.0.x']
steps:
- uses: actions/checkout@v3
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build
- name: Test with the dotnet CLI
run: dotnet test