Skip to content

chore(repo): ignore AI tooling and fix solution build #2

chore(repo): ignore AI tooling and fix solution build

chore(repo): ignore AI tooling and fix solution build #2

Workflow file for this run

name: Backend CI
on:
push:
branches: [ "main", "develop" ]
paths:
- 'src/**'
pull_request:
branches: [ "main", "develop" ]
paths:
- 'src/**'
jobs:
build:
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 ./src/Learnify.sln
- name: Build
run: dotnet build ./src/Learnify.sln --no-restore --configuration Release