Skip to content

Drop support for Python 3.6 and add 3.11 + 3.12 (#16) #58

Drop support for Python 3.6 and add 3.11 + 3.12 (#16)

Drop support for Python 3.6 and add 3.11 + 3.12 (#16) #58

Workflow file for this run

# Linting and style checks with GitHub Actions
name: check
# Only build PRs and the main branch. Pushes to branches will only be built
# when a PR is opened.
on:
pull_request:
push:
branches:
- main
###############################################################################
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.12"
- name: Install requirements
run: python -m pip install -r env/requirements-style.txt
- name: List installed packages
run: python -m pip freeze
- name: Run linting tools
run: make check-format
style:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.12"
- name: Install requirements
run: python -m pip install -r env/requirements-style.txt
- name: List installed packages
run: python -m pip freeze
- name: Run linting tools
run: make check-style