Skip to content

Bump PolySharp from 1.14.1 to 1.15.0 #272

Bump PolySharp from 1.14.1 to 1.15.0

Bump PolySharp from 1.14.1 to 1.15.0 #272

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
name: Test ${{ matrix.framework }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
framework: [net8.0]
env:
xunitlogpath: ${{github.workspace}}/xunitlog.txt
steps:
- uses: actions/[email protected]
- name: Setup .NET Core
uses: actions/[email protected]
with:
dotnet-version: 8.0
- name: Restore
run: dotnet restore
- name: Test
run: dotnet test -f ${{ matrix.framework }}
- name: Write log
run: cat ${{ env.xunitlogpath }}