Skip to content

Fix Failing GitHub Actions #1

Fix Failing GitHub Actions

Fix Failing GitHub Actions #1

Workflow file for this run

name: Python application
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
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 -r requirements.txt
- name: Print debugging information
run: |
python --version
pip freeze
pwd
- name: Run tests
run: |
pytest tests