Skip to content

Update certificate handling and add product creation feature #47

Update certificate handling and add product creation feature

Update certificate handling and add product creation feature #47

Workflow file for this run

name: 🚀 CI Pipeline
on:
pull_request:
branches:
- main
jobs:
test-and-build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET 9
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x'
- name: Restore NuGet packages
run: dotnet restore
- name: Build in Release mode
run: dotnet build -c Release --no-restore
- name: Run all tests
run: dotnet test -c Release --no-build --verbosity minimal