refactor: update ruff dependency to version 0.14.10 and streamline build steps

This commit is contained in:
grillazz
2025-12-28 18:55:32 +01:00
parent 7ef6e71025
commit ef6f9bc44b
3 changed files with 26 additions and 26 deletions

View File

@@ -41,10 +41,12 @@ jobs:
POSTGRES_DB: testdb
ports:
- 5432:5432
# needed because the postgres container does not provide a health check
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v7
with:
@@ -54,6 +56,4 @@ jobs:
run: uv run --frozen ruff check .
- name: Test with python ${{ matrix.python-version }}
run: uv run --frozen pytest
run: uv run pytest