Skip to content
This repository has been archived by the owner on Mar 28, 2024. It is now read-only.

build(deps): bump requests from 2.22.0 to 2.31.0 #134

build(deps): bump requests from 2.22.0 to 2.31.0

build(deps): bump requests from 2.22.0 to 2.31.0 #134

Workflow file for this run

name: Python application
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 --upgrade pipenv
pipenv install --system
- name: Run tests
run: |
python -m unittest discover -s tests -p "*.py"