Skip to content

Add Tag inspector

Add Tag inspector #7

Workflow file for this run

# Tests if the project can be built when a PR is made.
name: Test PRs
on:
pull_request:
branches: ["main"]
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet publish -c Release -o release