Skip to content

no pptx generation

no pptx generation #34

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
dotnet:
runs-on: ubuntu-latest
defaults:
run:
working-directory: SockstoreNet
steps:
- uses: actions/checkout@v5
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 9.0.x
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal --filter "FullyQualifiedName!~SockStoreTests.First"