-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (34 loc) · 1.21 KB
/
Copy pathpython-package.yml
File metadata and controls
36 lines (34 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
name: Python package
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
env:
UV_INDEX_GITLAB_USERNAME: ${{ vars.UV_INDEX_GITLAB_USERNAME }}
UV_INDEX_GITLAB_PASSWORD: ${{ secrets.UV_INDEX_GITLAB_PASSWORD }}
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }} and uv
uses: astral-sh/setup-uv@v7
with:
version: "0.9.26"
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --extra simulation
- run: uvx ruff check --output-format=github .
- run: uv run mypy ./metafold
- name: Test with pytest
run: uv run pytest --junitxml=junit/test-results-${{ matrix.python-version }}.xml ./tests
- name: Upload pytest test results
uses: actions/upload-artifact@v4
with:
name: pytest-results-${{ matrix.python-version }}
path: junit/test-results-${{ matrix.python-version }}.xml
# Use always() to always run this step to publish test results when there are test failures
if: ${{ always() }}
...