Skip to content

fix: upgrade axios from 1.2.5 to 1.4.0 (#45) #117

fix: upgrade axios from 1.2.5 to 1.4.0 (#45)

fix: upgrade axios from 1.2.5 to 1.4.0 (#45) #117

Workflow file for this run

name: Test
on: [push]
jobs:
Pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Start MongoDB
uses: supercharge/[email protected]
with:
mongodb-version: 4.4
- name: Install dependencies
working-directory: api
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
working-directory: api
run: pytest test.py