This repository has been archived by the owner on Apr 9, 2024. It is now read-only.
Updated included 7z dll's to 23.01. #47
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |