Skip to content

Fix publish workflow and bump to 0.0.9 #6

Fix publish workflow and bump to 0.0.9

Fix publish workflow and bump to 0.0.9 #6

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.100'
- name: Restore
run: dotnet restore Common.sln
- name: Test
run: dotnet test Common.sln --configuration Release --no-restore