Compare commits
7 Commits
a425c5498c
...
1ce5843436
| Author | SHA1 | Date |
|---|---|---|
|
|
1ce5843436 | |
|
|
aa5958028c | |
|
|
30c7e8c9aa | |
|
|
65eb82176d | |
|
|
760269c07a | |
|
|
d86206f2ef | |
|
|
4b9a5209ea |
|
|
@ -0,0 +1,43 @@
|
|||
name: Test
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- "**"
|
||||
paths:
|
||||
- '**.py'
|
||||
- 'pyproject.toml'
|
||||
- 'poetry.lock'
|
||||
- 'tests/**'
|
||||
pull_request:
|
||||
branches:
|
||||
- "**"
|
||||
paths:
|
||||
- '**.py'
|
||||
- 'pyproject.toml'
|
||||
- 'poetry.lock'
|
||||
- 'tests/**'
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.14'
|
||||
|
||||
- name: Install uv
|
||||
run: pip install uv
|
||||
|
||||
- name: Sync dependencies
|
||||
run: uv sync --dev
|
||||
|
||||
- name: Run tests
|
||||
run: uv run pytest
|
||||
|
||||
Loading…
Reference in New Issue