Skip to content

✨ BinaryResource

✨ BinaryResource #1

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 }}