Skip to content

ci(workflows): split build-and-deploy into reusable build and deploy … #1061

ci(workflows): split build-and-deploy into reusable build and deploy …

ci(workflows): split build-and-deploy into reusable build and deploy … #1061

Workflow file for this run

name: .NET Build
on:
pull_request:
branches: [master, dev]
permissions:
contents: read
jobs:
build:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore