Skip to content

chore(pulumi): auto-applied workflow #45

chore(pulumi): auto-applied workflow

chore(pulumi): auto-applied workflow #45

Workflow file for this run

# THIS FILE IS GENERATED! DO NOT EDIT! Maintained by Pulumi
name: python test
on:
- pull_request
permissions:
contents: read
pull-requests: read
checks: write
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
{%- for item in list_items %}

Check failure on line 16 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 16
- {{ item }}
{%- endfor %}
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 }}
- name: Install the project
run: uv sync --all-extras
- name: Run tests
run: uv run pytest --cov