Skip to content

Merge pull request #87 from Women-in-Computing-at-RIT/24fixes #261

Merge pull request #87 from Women-in-Computing-at-RIT/24fixes

Merge pull request #87 from Women-in-Computing-at-RIT/24fixes #261

Workflow file for this run

name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./api
strategy:
matrix:
python-version: ["3.8",]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
pip install -r requirements.txt
- name: Test with pytest
run: |
cd src
python -m pytest