Skip to content

Release 1.0.0

Release 1.0.0 #73

Workflow file for this run

name: flake8
on:
push:
branches:
- main
workflow_dispatch: {}
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
flake8:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
fail-fast: false
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/setup.py') }}
restore-keys: |
${{ runner.os }}-pip-${{ matrix.python-version }}-
- name: Install dependencies
run: |
python3 -m pip install --no-cache-dir --progress-bar off -U pip setuptools wheel
python3 -m pip install --no-cache-dir --progress-bar off -U .[tests]
- name: Check with flake8
run: |
bash ./tests/lint_and_style_check/flake8.sh