Skip to content

[Snyk] Security upgrade aiohttp from 3.7.4.post0 to 3.10.11 #527

[Snyk] Security upgrade aiohttp from 3.7.4.post0 to 3.10.11

[Snyk] Security upgrade aiohttp from 3.7.4.post0 to 3.10.11 #527

Workflow file for this run

name: Pytest
on: [push, pull_request]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Create env file
run: |
cat << EOF > .env
DATABASE_URL=${{ secrets.DATABASE_URL }}
EOF
- name: Test with pytest
run: pytest