Skip to content

Update comments to indicate visual_style param as deprecated (#283) #333

Update comments to indicate visual_style param as deprecated (#283)

Update comments to indicate visual_style param as deprecated (#283) #333

Workflow file for this run

name: Python CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: Python CI - test
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Dependencies
run: |
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Lint with flake8
run: flake8
- name: Test with nose2
run: nose2