Skip to content

Merge pull request #12 from authzed/dependabot/nuget/gradle-f4ea0d6154 #5

Merge pull request #12 from authzed/dependabot/nuget/gradle-f4ea0d6154

Merge pull request #12 from authzed/dependabot/nuget/gradle-f4ea0d6154 #5

Workflow file for this run

---
name: "Lint"
on: # yamllint disable-line rule:truthy
push:
branches:
- "main"
pull_request:
branches: ["*"]
jobs:
lint:
# Uses pre-commit to run all checks
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4"
# needed for pre-commit
- uses: "actions/setup-python@v5"
with:
python-version: "3.11"
- uses: "actions/setup-dotnet@v4"
with:
dotnet-version: '8.x'
- uses: "pre-commit/[email protected]"