Skip to content

Merge pull request #18 from freelawproject/update-template-python-run… #86

Merge pull request #18 from freelawproject/update-template-python-run…

Merge pull request #18 from freelawproject/update-template-python-run… #86

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: cd cl && pip install -r recap_email/requirements.txt && pip install -r tests/requirements.txt
- name: Activate venv
run: |
echo "VIRTUAL_ENV=$GITHUB_WORKSPACE/.venv" >> $GITHUB_ENV
echo "PYTHONPATH=$GITHUB_WORKSPACE" >> $GITHUB_ENV
echo "$GITHUB_WORKSPACE/.venv/bin" >> $GITHUB_PATH
- name: Run tests
run: cd cl && python -m pytest tests/unit -v