Skip to content
This repository has been archived by the owner on Apr 9, 2024. It is now read-only.

Release 1.6.2

Release 1.6.2 #48

Workflow file for this run

on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev", "master" ]
jobs:
build:
strategy:
matrix:
configuration: [Release, LiteRelease]
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Execute unit tests
run: dotnet test -c $env:Configuration
env:
Configuration: ${{ matrix.configuration }}