Skip to content

⬆ Bump jira from 3.4.1 to 3.6.0 #968

⬆ Bump jira from 3.4.1 to 3.6.0

⬆ Bump jira from 3.4.1 to 3.6.0 #968

name: Check Python Formatting
on:
pull_request:
branches: [ master ]
paths:
- '.github/workflows/python-formatting.yml'
- 'pyproject.toml'
- 'Makefile'
- '**.py'
jobs:
format-check:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: |
**/requirements*.txt
pyproject.toml
- name: Check for formatting
run: make format-check