Skip to content

Don't allow label references to be given to directives #164

Don't allow label references to be given to directives

Don't allow label references to be given to directives #164

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET
on:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Test Project
run: dotnet test
- name: Publish Project
run: dotnet publish AssEmbly.csproj -p:PublishProfile="Properties/PublishProfiles/FolderProfile.pubxml" -p:TreatWarningsAsErrors=true -warnaserror
- name: Upload Build Artifact
uses: actions/[email protected]
with:
name: AssEmbly
path: Publish/AssEmbly.exe
if-no-files-found: error