This commit is contained in:
parent
66faf9cf33
commit
f26e61f7af
1 changed files with 11 additions and 2 deletions
13
.github/workflows/pytest.yaml
vendored
13
.github/workflows/pytest.yaml
vendored
|
|
@ -1,7 +1,17 @@
|
||||||
name: Pytest
|
name: Pytest
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- develop
|
||||||
|
pull_request:
|
||||||
|
workflow_dispatch:
|
||||||
|
schedule:
|
||||||
|
- cron: '0 4 1 * *'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
pytest:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version:
|
python-version:
|
||||||
|
|
@ -20,5 +30,4 @@ jobs:
|
||||||
- name: Install corrlib
|
- name: Install corrlib
|
||||||
run: uv sync --locked --all-extras --dev
|
run: uv sync --locked --all-extras --dev
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
# For example, using `pytest`
|
|
||||||
run: uv run pytest tests
|
run: uv run pytest tests
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue