Skip to content
This repository has been archived by the owner on Dec 26, 2024. It is now read-only.

ci(workflows): disable Fly.io deployment workflows in preparation for migration to Vercel #235

ci(workflows): disable Fly.io deployment workflows in preparation for migration to Vercel

ci(workflows): disable Fly.io deployment workflows in preparation for migration to Vercel #235

name: Run PyTests and Coverage
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Run tests with coverage
run: |
poetry run coverage run -m pytest
poetry run coverage report
- name: Upload coverage report
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: htmlcov/