Skip to content

update theme

update theme #41

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
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: 10.0.x
- name: Restore
run: dotnet restore SockStoreNet.slnx
- name: Build
run: dotnet build SockStoreNet.slnx --no-restore
- name: Test
run: dotnet test SockStoreNet.slnx --no-build --verbosity normal --filter "FullyQualifiedName!~SockStoreTests.First"