Skip to content

## 8.1.3 - 2024-10-14 #66

## 8.1.3 - 2024-10-14

## 8.1.3 - 2024-10-14 #66

Workflow file for this run

name: PR Gate
on:
pull_request:
branches: [ main, release/* ]
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core 8
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Debug --no-restore
- name: Test
run: dotnet test --configuration Debug --no-build --no-restore -v normal
- name: Pack
run: dotnet pack --configuration Debug --no-build --no-restore -v normal