Skip to content

Fix: CI workflow uses Release configuration #14

Fix: CI workflow uses Release configuration

Fix: CI workflow uses Release configuration #14

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.0.x'
- name: Restore
run: dotnet restore src/Endpointer.slnx
- name: Build
run: dotnet build src/Endpointer.slnx --no-restore -c Release
- name: Test
run: dotnet test --solution src/Endpointer.slnx --no-build -c Release
- name: Pack
run: dotnet pack src/Endpointer/Endpointer.csproj --no-build -c Release -o ./artifacts