Skip to content

Delete Cheikh-amorphous-3.28-0-25.yml #101

Delete Cheikh-amorphous-3.28-0-25.yml

Delete Cheikh-amorphous-3.28-0-25.yml #101

Workflow file for this run

# This `test.yml` file defines a GitHub action that will run for all pull requests,
# and for all pushes to dev. It installs the python test libraries and then runs the `pytest` command.
# This automatically detects `test_*.py` files and executes tests therein.
name: CI
on:
pull_request:
push:
branches:
- dev
# schedule:
# - cron: "0 13 * * 1" # Every Monday at 9AM EST
jobs:
test-parsing:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Install the project
run: uv sync --all-extras --dev
- name: Run tests
run: uv run pytest tests