Skip to content

disable in other place #42

disable in other place

disable in other place #42

Workflow file for this run

---
name: lint
permissions: read-all
on: # yamllint disable-line rule:truthy
push: null
pull_request: null
jobs:
build:
name: Lint
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
# super-linter needs the full git history to get the
# list of files that changed across commits
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
global-json-file: global.json
- name: Super-linter
uses: super-linter/super-linter@v6.3.0 # x-release-please-version
env:
FILTER_REGEX_EXCLUDE: './benchmarks/.*'
# To report GitHub Actions status checks
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}