Skip to content

Test PR pipeline

Test PR pipeline #4

Workflow file for this run

name: API (CI)
on:
workflow_dispatch:
pull_request:
paths:
- 'src/api/**'
jobs:
API_CI:
runs-on: ubuntu-latest
defaults:
run:
working-directory: src/api
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: .NET Restore
run: dotnet restore
- name: .NET Build
run: dotnet build --no-restore
- name: .NET Test
run: dotnet test --no-build --verbosity normal