Skip to content

Refine public API structure #4

Refine public API structure

Refine public API structure #4

Workflow file for this run

name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
build-test-pack:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.0.x
- name: Restore
run: dotnet restore Notion2Ical.sln
- name: Build
run: dotnet build Notion2Ical.sln --configuration Release --no-restore
- name: Test
run: dotnet test Notion2Ical.sln --configuration Release --no-build --verbosity normal
- name: Pack
run: dotnet pack Notion2Ical/Notion2Ical.csproj --configuration Release --no-build --output artifacts
- name: Upload package artifact
uses: actions/upload-artifact@v4
with:
name: nuget-package
path: artifacts/*.nupkg