Skip to content

Bump al-cheb/configure-pagefile-action from 1.2 to 1.4 #21

Bump al-cheb/configure-pagefile-action from 1.2 to 1.4

Bump al-cheb/configure-pagefile-action from 1.2 to 1.4 #21

Workflow file for this run

name: Windows
on:
push:
branches: [ main ]
paths-ignore:
- '**.md'
pull_request:
branches: [ main ]
paths-ignore:
- '**.md'
jobs:
build-test:
runs-on: windows-latest
strategy:
matrix:
version: [net462,netcoreapp3.1,net6.0]
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test ${{ matrix.version }}
run: dotnet test **\bin\**\${{ matrix.version }}\*Tests.dll --configuration Release --no-build --logger:"console;verbosity=detailed"