Skip to content

Add option to setup command allowing it to run without installed tool… #159

Add option to setup command allowing it to run without installed tool…

Add option to setup command allowing it to run without installed tool… #159

Workflow file for this run

name: global
on:
pull_request:
paths:
- '.github/workflows/global.yml'
- '.pre-commit-config.yaml'
- 'scripts/check_copyright_notice.py'
- '**/*.go'
- '!**/docs/**/*'
- '!**/*.md'
# Declare default permissions as read only.
permissions: read-all
jobs:
copyright:
runs-on: ubuntu-latest
steps:
- name: Checkout devtools
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- name: Check copyright notice
run: |
pip install \
pre-commit \
python-magic==0.4.18 \
comment-parser>=1.2.3
pre-commit run --all-files