Skip to content

Adds uid to PresentTag #36

Adds uid to PresentTag

Adds uid to PresentTag #36

Workflow file for this run

name: Build .NET
on:
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checkout sources. Depth=0 is for using GitVersion
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.x
# Install and Setup GitVersion
- name: Install GitVersion
uses: gittools/actions/gitversion/setup@v0
with:
versionSpec: '5.x'
- name: Use GitVersion
# Step id is used as reference for the output values
id: gitversion
uses: gittools/actions/gitversion/execute@v0
# Restore, build and test the project
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal