Skip to content

Instantly share code, notes, and snippets.

@ElWazy
Created June 7, 2025 03:45
Show Gist options
  • Save ElWazy/5fb0dba86ed9f8d5066fbc4f8c49a9e6 to your computer and use it in GitHub Desktop.
Save ElWazy/5fb0dba86ed9f8d5066fbc4f8c49a9e6 to your computer and use it in GitHub Desktop.
name: El Checker
on: [push]
jobs:
uv:
name: pytests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
version: "0.7.12"
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Run tests
run: uv run pytest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment