Skip to content

Bump version: 1.9.2 → 1.9.3.dev0 #798

Bump version: 1.9.2 → 1.9.3.dev0

Bump version: 1.9.2 → 1.9.3.dev0 #798

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
checks:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Install
run: |
python -m pip install -U pip
python -m pip install -U .[dev]
- name: black
run: black . --check --diff
- name: flake8
run: flake8 .