Skip to content

NEW: add Python 3.11 and 3.12, and remove 3.7 πŸ§‘β€πŸ’» #78

NEW: add Python 3.11 and 3.12, and remove 3.7 πŸ§‘β€πŸ’»

NEW: add Python 3.11 and 3.12, and remove 3.7 πŸ§‘β€πŸ’» #78

Workflow file for this run

name: Lint checks
on: [push, pull_request]
jobs:
build:
name: Lint
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Run lint checks
run: make lint