Skip to content

Merge overleaf-2024-08-02-0137 into master #185

Merge overleaf-2024-08-02-0137 into master

Merge overleaf-2024-08-02-0137 into master #185

Workflow file for this run

name: Unit-Tests
on: [push]
jobs:
build:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
pip install pytest pytest-github-actions-annotate-failures
- name: Install package
run: |
pip install .
- name: Test with pytest
run: |
pytest