Skip to content

Test PR - DO NOT MERGE - Testing for GH Action added in PR #430 #4

Test PR - DO NOT MERGE - Testing for GH Action added in PR #430

Test PR - DO NOT MERGE - Testing for GH Action added in PR #430 #4

name: Check Python package code
on:
pull_request_target:
paths:
- 'packages/**'
- 'pyproject.toml'
- 'uv.lock'
push:
branches: [main, dev]
paths:
- 'packages/**'
- 'pyproject.toml'
- 'uv.lock'
jobs:
check:
runs-on: ubuntu-latest
if: github.event.pull_request.head.repo.full_name == github.repository
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Run make check
run: make check