Skip to content

Simplify file processing in FileTreeEnumerable class #53

Simplify file processing in FileTreeEnumerable class

Simplify file processing in FileTreeEnumerable class #53

Workflow file for this run

name: Build & Test
on:
pull_request:
branches: [main]
jobs:
build-and-test:
name: build-and-test-${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal