Skip to content

Delete .github/workflows/purge-artifacts.yml #53

Delete .github/workflows/purge-artifacts.yml

Delete .github/workflows/purge-artifacts.yml #53

Workflow file for this run

name: Linter check
on:
pull_request
jobs:
linter-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
- name: Dotnet restore
run: dotnet tool restore
- name: Csharpier format check
run: |
dotnet csharpier . --check
echo "run 'dotnet build' to fix the formatting of the code automatically"