Skip to content

Add debugging output and refine list special rule #206

Add debugging output and refine list special rule

Add debugging output and refine list special rule #206

Workflow file for this run

name: Build
on:
push:
paths:
- "**"
- "!**.md"
pull_request:
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
dotnet: [8.0.301]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Run build
run: dotnet run build
- name: Run tests
run: dotnet run test