Skip to content

Added some extensions and comparers for file system info types (#13) #38

Added some extensions and comparers for file system info types (#13)

Added some extensions and comparers for file system info types (#13) #38

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- 'main'
paths-ignore:
- 'doc/**'
- 'CONTRIBUTING.md'
- 'README.md'
jobs:
build:
runs-on: windows-latest
steps:
- name: Clone
uses: actions/checkout@v3
with:
fetch-depth: 0 # Entire history required by Nerdbank.GitVersioning
- name: Set up .NET
uses: actions/setup-dotnet@v2
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --configuration Release --no-build --filter "TestCategory != Bug & TestCategory != FeatureRequest" --verbosity normal
- name: Pack
run: dotnet pack --configuration Release --no-build
- name: Publish
run: dotnet nuget push **/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate