Skip to content
This repository has been archived by the owner on Nov 18, 2023. It is now read-only.

build(deps-dev): Bump wheel from 0.37.0 to 0.41.3 #227

build(deps-dev): Bump wheel from 0.37.0 to 0.41.3

build(deps-dev): Bump wheel from 0.37.0 to 0.41.3 #227

Workflow file for this run

name: check
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: flake8 --max-line-length=100