Skip to content

Fix tests.

Fix tests. #320

Workflow file for this run

name: Nuget Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- name: setup dotnet
uses: actions/setup-dotnet@v4.1.0
with:
dotnet-version: 8.0.x
- name: test
run: |
dotnet test --filter Category!=Dependencies
- name: pack
run: |
dotnet pack -c Release
- name: publish
run: |
dotnet nuget push **/*.nupkg --source 'https://api.nuget.org/v3/index.json' --skip-duplicate -k ${{ secrets.nuget }}