Skip to content

Bump the nuget-dependencies group in /AnkiStoryGenerator with 7 updates #38

Bump the nuget-dependencies group in /AnkiStoryGenerator with 7 updates

Bump the nuget-dependencies group in /AnkiStoryGenerator with 7 updates #38

Workflow file for this run

name: Run unit tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Restore dependencies
run: dotnet restore AnkiStoryGenerator/AnkiStoryGenerator.sln
- name: Build solution
run: dotnet build AnkiStoryGenerator/AnkiStoryGenerator.sln --configuration Debug --no-restore
- name: Run unit tests
run: dotnet test AnkiStoryGenerator/AnkiStoryGenerator.sln --configuration Debug --no-build --no-restore