Skip to content

Rewrite in net 8 and refactor #1

Rewrite in net 8 and refactor

Rewrite in net 8 and refactor #1

Workflow file for this run

name: Build and test
on:
pull_request:
branches:
- master
workflow_dispatch:
env:
DOTNET_VERSION: '8.*'
jobs:
build-and-test:
name: build-and-test-${{matrix.os}}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Install dependencies
run: dotnet restore "src/PsVideoResolutionCmdlet.sln"
- name: Build
run: dotnet build "src/PsVideoResolutionCmdlet.sln" --configuration Release --no-restore
- name: Test
run: dotnet test "src/PsVideoResolutionCmdlet.Tests/PsVideoResolutionCmdlet.Tests.csproj" --no-restore --verbosity normal