Skip to content

Making sure all import statements are unique per type #188

Making sure all import statements are unique per type

Making sure all import statements are unique per type #188

Workflow file for this run

name: .NET Build
env:
DOTNET_VERSION: "8.0.301"
on:
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
push:
branches:
- "main"
paths:
- "Source/DotNET/**"
- "Specifications/**"
pull_request:
branches:
- "**"
paths:
- "Source/DotNET/**"
- "Specifications/**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .Net
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Build
run: dotnet build --configuration Release
- name: Test
run: dotnet test --configuration Release --no-build