mirror of
https://github.com/pybricks/pybricks-api.git
synced 2026-09-11 09:05:07 +00:00
16 lines
317 B
YAML
16 lines
317 B
YAML
name: pybricks_jedi
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
if: github.ref_type != 'tag'
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- run: pipx install poetry
|
|
- run: poetry install
|
|
working-directory: ./jedi
|
|
- run: poetry run pytest -vv
|
|
working-directory: ./jedi
|