Skip to content

Run black only on Python 3.11 in CI #410

Run black only on Python 3.11 in CI

Run black only on Python 3.11 in CI #410

Workflow file for this run

name: Sanity
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
sanity:
strategy:
matrix:
platform: ["ubuntu-latest", "macos-latest", "windows-latest"]
python: ["3.9","3.10", "3.11", "3.12", "3.13"]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Update pip
run: python3 -m pip install --upgrade pip
- name: Install
run: python3 -m pip install .
- name: Check help message
run: python3 -m chatdbg --help
- name: Check calling executable directly
run: chatdbg --help