Skip to content

ci/package_checks: add check for commit message ending in ] #45

ci/package_checks: add check for commit message ending in ]

ci/package_checks: add check for commit message ending in ] #45

Workflow file for this run

---
name: Script Lint
on:
pull_request:
paths:
- 'common/**'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
Python:
name: Python Linting
runs-on: ubuntu-latest
steps:
- name: Check out source repository
uses: actions/checkout@v4
- name: Set up Python environment
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: flake8 Lint
uses: py-actions/flake8@v2
with:
path: common/CI common/Hooks
- name: mypy lint
uses: jpetrucciani/mypy-check@master
with:
path: common/CI common/Hooks
python_version: "3.10"
requirements: types-PyYAML