Add import_executor to manifest.json #2792
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
concurrency: | |
group: lint-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
matrix: | |
runs-on: ubuntu-latest | |
name: Run ${{ matrix.check }} | |
strategy: | |
matrix: | |
check: | |
- pyupgrade | |
- black | |
- codespell | |
- check-executables-have-shebangs | |
- check-json | |
- requirements-txt-fixer | |
- check-ast | |
- mixed-line-ending | |
steps: | |
- name: 📥 Checkout the repository | |
uses: actions/checkout@v4.1.1 | |
- name: 🛠️ Set up Python | |
uses: actions/setup-python@v4.7.1 | |
id: python | |
with: | |
python-version: "3.11" | |
- name: 📦 Install pre-commit | |
run: | | |
scripts/install/pip_packages pre-commit | |
pre-commit install-hooks --config .github/pre-commit-config.yaml | |
- name: 🏃 Run the check (${{ matrix.check }}) | |
run: pre-commit run --hook-stage manual ${{ matrix.check }} --all-files --config .github/pre-commit-config.yaml | |
lint-json: | |
runs-on: ubuntu-latest | |
name: With JQ | |
steps: | |
- name: 📥 Checkout the repository | |
uses: actions/checkout@v4.1.1 | |
- name: 🏃 Run validation | |
run: jq -r -e -c . tests/fixtures/*.json |