Skip to content

build(deps): bump certifi from 2023.5.7 to 2023.7.22 #334

build(deps): bump certifi from 2023.5.7 to 2023.7.22

build(deps): bump certifi from 2023.5.7 to 2023.7.22 #334

Workflow file for this run

name: Pull requests Lint/Test
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv==2021.5.29
pipenv install --system --dev
- name: Lint
run: make lint
- name: Test with pytest
run: export PYTHONPATH=./bot && pytest