Skip to content

Merge pull request #67 from livrasand/dependabot/pip/cryptography-43.0.1 #40

Merge pull request #67 from livrasand/dependabot/pip/cryptography-43.0.1

Merge pull request #67 from livrasand/dependabot/pip/cryptography-43.0.1 #40

Workflow file for this run

name: Python application
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: |
pytest