Skip to content

fix(python/submit): update argparse help info (#24) #27

fix(python/submit): update argparse help info (#24)

fix(python/submit): update argparse help info (#24) #27

name: pytest
on:
push:
branches:
- "main"
paths:
- "python/submit/**.py"
pull_request:
types: [opened, synchronize, reopened]
paths:
- "python/submit/**.py"
- "python/submit/pyproject.toml"
- ".github/workflows/python-submit-pytest.yml"
defaults:
run:
shell: bash -e {0}
working-directory: python/submit
jobs:
check:
runs-on: ${{ matrix.os }}
continue-on-error: true
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
version: "0.5.9"
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-extras --dev
- name: Run tests
run: uv run pytest