Skip to content

Commit f5fb6a6

Browse files
authored
Move to uv (#2062)
1 parent 9e371da commit f5fb6a6

File tree

8 files changed

+161
-1064
lines changed

8 files changed

+161
-1064
lines changed

.github/CONTRIBUTING.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ these guidelines:
1717
- Keep one application supported per PR
1818
- Add the application to the list of supported applications in
1919
[README.md][README.md]
20-
- Add your change to the WIP section of the [CHANGELOG.md][CHANGELOG.md]
2120
- Sync configurations should follow the following principles:
2221
- Syncing should not break the application, and PRs should be tested
2322
- Syncing should not break any syncing functionality internal to the
@@ -35,4 +34,3 @@ Thank you for your contribution!
3534
[CODETRIAGE]: https://www.codetriage.com/lra/mackup
3635
[CODETRIAGE-IMG]: https://www.codetriage.com/lra/mackup/badges/users.svg
3736
[README.md]: https://github.com/lra/mackup/blob/master/README.md
38-
[CHANGELOG.md]: https://github.com/lra/mackup/blob/master/CHANGELOG.md

.github/workflows/test.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
- "3.11"
1818
- "3.12"
1919
- "3.13"
20-
container: python:${{ matrix.python-version }}
2120
steps:
22-
- run: echo "${HOME}/.local/bin" >> $GITHUB_PATH
23-
- run: pip install pipx
24-
- run: pipx install poetry
2521
- uses: actions/checkout@v4
26-
- run: make test
22+
- uses: astral-sh/setup-uv@v5
23+
with:
24+
python-version: ${{ matrix.python-version }}
25+
- run: uv sync --all-extras --dev
26+
- run: uv run pytest

0 commit comments

Comments
 (0)