Created
June 7, 2025 03:45
-
-
Save ElWazy/5fb0dba86ed9f8d5066fbc4f8c49a9e6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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