Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Refactor Certificate and Route components to enhance functionality an… #126

Refactor Certificate and Route components to enhance functionality an…

Refactor Certificate and Route components to enhance functionality an… #126

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --configuration Release --no-build --verbosity normal