Skip to content

Move to official s3 bucket #76

Move to official s3 bucket

Move to official s3 bucket #76

Workflow file for this run

name: Pytest
on: [push, pull_request]
jobs:
uv:
name: python
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@38f3f104447c67c051c4a08e39b64a148898af3a
with:
version: "0.5.3"
- name: Set up Python
run: uv python install
- name: Install the project
run: uv sync --all-extras --dev
- name: Run tests
run: uv run coverage run -m pytest tests
- name: Generate coverage
run: uv run coverage xml
- name: Codacy Coverage Reporter
uses: codacy/codacy-coverage-reporter-action@89d6c85cfafaec52c72b6c5e8b2878d33104c699
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: 'coverage.xml'