File tree Expand file tree Collapse file tree 4 files changed +42
-0
lines changed
Expand file tree Collapse file tree 4 files changed +42
-0
lines changed Original file line number Diff line number Diff line change 1+ version : 2
2+ updates :
3+ - package-ecosystem : " github-actions"
4+ directory : " /"
5+ schedule :
6+ interval : " weekly"
Original file line number Diff line number Diff line change 1+ name : testing
2+
3+ on :
4+ push :
5+ branches : [master]
6+ pull_request :
7+ branches : [master]
8+
9+ jobs :
10+ test :
11+ strategy :
12+ matrix :
13+ os : ["ubuntu-latest"]
14+ python-version : ["3.11", "3.12", "3.13"]
15+
16+ name : mp-cite (${{ matrix.os }}/py${{ matrix.python-version }})
17+ runs-on : ${{ matrix.os }}
18+ steps :
19+ - uses : actions/checkout@v4
20+ with :
21+ fetch-depth : 0
22+
23+ - name : Install uv
24+ uses : astral-sh/setup-uv@v6
25+ with :
26+ python-version : ${{ matrix.python-version }}
27+
28+ - name : Install the project
29+ run : uv sync --locked --all-extras --dev
30+
31+ - name : Run tests
32+ env :
33+ ELINK_REVIEW_API_TOKEN : ${{ secrets.ELINK_REVIEW_API_TOKEN }}
34+ ELINK_REVIEW_ENDPOINT : ${{ secrets.ELINK_REVIEW_ENDPOINT }}
35+ run : uv run pytest tests
36+ # codecov?
You can’t perform that action at this time.
0 commit comments