Skip to content

feat: Add Auth Service #2

feat: Add Auth Service

feat: Add Auth Service #2

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