Skip to content

Merge pull request #8 from inab/7-evaluation-fails #29

Merge pull request #8 from inab/7-evaluation-fails

Merge pull request #8 from inab/7-evaluation-fails #29

Workflow file for this run

name: CI/CD Pipeline
on:
push:
branches:
- '**'
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.10.6
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -r requirements.txt
- name: Run tests
run: |
pytest -v app/tests