Skip to content

fix missing openpyxl #65

fix missing openpyxl

fix missing openpyxl #65

Workflow file for this run

name: Check and Lint
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
check:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Lint with flake8
run:
flake8 . --count --max-complexity=10 --max-line-length=180 --statistics