Skip to content

added tox-uv installation in action #16

added tox-uv installation in action

added tox-uv installation in action #16

Workflow file for this run

on: "push"
name: setup-and-test
jobs:
uv-example:
name: python
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}

Check failure on line 24 in .github/workflows/setup-and-test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/setup-and-test.yml

Invalid workflow file

You have an error in your yaml syntax on line 24
- name: Install dependencies
run: |
# python -m pip install --upgrade pip
# pip install tox
uv tool install tox --with tox-uv
- name: Run Tox
run: tox
# - name: Install the project
# run: uv sync --all-extras --dev
#
# - name: Run tests
# # For example, using `pytest`
# run: uv run pytest tests