Skip to content

Update version to 2.1.2 #82

Update version to 2.1.2

Update version to 2.1.2 #82

Workflow file for this run

name: Linting
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: Python 3.8
steps:
- uses: actions/[email protected]
- name: Setup python
uses: actions/[email protected]
with:
python-version: 3.12
architecture: x64
- name: Update pip
run: pip install --upgrade pip
- name: Install linters
run: pip install black flake8
- name: check code style with black
run: black --check **/*.py
- name: flake8 tests
run: flake8 **/*.py