Skip to content

Auto PR: Merge develop to main #6

Auto PR: Merge develop to main

Auto PR: Merge develop to main #6

Workflow file for this run

name: CI
on:
pull_request:
branches: [ main, develop ]
push:
branches: [ main ] # Only run on main for direct pushes
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Test
run: dotnet test --no-build --configuration Release --verbosity normal