Skip to content

Add SPN. Create Azure Resource Group #3

Add SPN. Create Azure Resource Group

Add SPN. Create Azure Resource Group #3

Workflow file for this run

---
name: Application
on:
push:
branches:
- main
paths:
- .github/workflows/application.yml
- src/**
- tests/**
pull_request:
branches:
- main
paths:
- .github/workflows/application.yml
- src/**
- tests/**
jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
configuration: Release
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.100-preview.7.24407.12
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration ${{ env.configuration }}
- name: Test
run: dotnet test --no-build --verbosity normal --configuration ${{ env.configuration }}