Update python support to 3.10, 3.11 and 3.12 #148
Workflow file for this run
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 python projects | |
on: | |
pull_request: | |
branches: | |
- main | |
- develop | |
jobs: | |
lint: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.x | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Update pip | |
run: pip install --upgrade pip | |
- name: Install black and pylint | |
run: pip install black~=22.3 pylint~=2.13,!=2.13.6 | |
- name: Check files are formatted with black | |
run: | | |
black --check . | |
- name: Run pylint | |
run: | | |
pylint */ |