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

build(deps): Bump certifi from 2022.5.18.1 to 2023.7.22 #217

build(deps): Bump certifi from 2022.5.18.1 to 2023.7.22

build(deps): Bump certifi from 2022.5.18.1 to 2023.7.22 #217

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