Skip to content

add requirments.txt

add requirments.txt #7

Workflow file for this run

name: Python CI and testing
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Copy the code to test
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: INstall dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test code with pytest
run: pytest