Skip to content

ENH: Update actions to latest tags #732

ENH: Update actions to latest tags

ENH: Update actions to latest tags #732

Workflow file for this run

name: Lint
on: [push,pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
# Full git history is needed to get a proper
# list of changed files within `super-linter`
fetch-depth: 0
- name: Lint C++
uses: InsightSoftwareConsortium/ITKClangFormatLinterAction@master
- name: Set up Python
uses: actions/[email protected]
with:
python-version: 3.11
- name: Lint Python
uses: github/[email protected]
env:
VALIDATE_ALL_CODEBASE: false
VALIDATE_PYTHON_BLACK: true
VALIDATE_YAML: true
FILTER_REGEX_EXCLUDE: .github/labeler.yml
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}