Skip to content

Update and rename reqruirements.txt to requirements.txt #14

Update and rename reqruirements.txt to requirements.txt

Update and rename reqruirements.txt to requirements.txt #14

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python application
on:
push:
branches: [ "master" ] # Consider changing "master" to "main" if your default branch is named "main"
pull_request:
branches: [ "master" ] # Same as above, consider the name of your default branch
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9' # Specify your Python version here
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt # Install dependencies from your requirements.txt file
- name: Run unit tests
run: |
python -m unittest discover -s tests -v