Skip to content

Bump the nuget-dependencies group with 2 updates #65

Bump the nuget-dependencies group with 2 updates

Bump the nuget-dependencies group with 2 updates #65

Workflow file for this run

name: CI tests
on:
pull_request:
branches: [ "main" ]
paths-ignore:
- '**/*.md'
push:
branches: [ "main" ]
paths-ignore:
- '**/*.md'
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Cache NuGet packages
uses: actions/cache@v5
with:
path: ${{ github.workspace }}/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.sln*', '**/*.csproj*') }}
restore-keys: |
${{ runner.os }}-nuget-
- name: Restore NuGet packages
run: |
dotnet restore FileAutoCleaner.slnx
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v3
- name: Build solution for testing
run: |
dotnet test FileAutoCleaner.csproj --configuration Debug --no-restore