Skip to content

Bump requests from 2.31.0 to 2.32.0 in /src #151

Bump requests from 2.31.0 to 2.32.0 in /src

Bump requests from 2.31.0 to 2.32.0 in /src #151

Workflow file for this run

name: Run tests
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
pull_request:
branches:
- main
jobs:
RunTests:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -r src/requirements.txt
- name: Run tests
run: |
bash tests/run_tests.sh