Skip to content

Bump version: 2.1.1 β†’ 3.0.0 #27

Bump version: 2.1.1 β†’ 3.0.0

Bump version: 2.1.1 β†’ 3.0.0 #27

Workflow file for this run

name: Linting
on:
pull_request:
push:
jobs:
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Install Style dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_style.txt
- name: Run linting
run: make lint
# - name: Run codespell
# if: ${{ always() }}
# run: make codespell