Skip to content

Test on Python 3.11 and Python 3.12 too #53

Test on Python 3.11 and Python 3.12 too

Test on Python 3.11 and Python 3.12 too #53

Workflow file for this run

name: ci
on: [workflow_dispatch, push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12" ]
name: python-${{ matrix.python }}
steps:
- name: Checkout
uses: actions/checkout@main
- name: Setup python-${{ matrix.python }}
uses: actions/setup-python@main
with:
python-version: ${{ matrix.python }}
- name: Install Tools
run: |
python3 -m pip install pylint
python3 -m pip install mypy
python3 -m pip install .
- name: Test
run: |
./test/install_from_local_and_run_code_checks.sh