diff --git a/.github/workflows/test-server.yml b/.github/workflows/test-server.yml index 901139e..edf8fff 100644 --- a/.github/workflows/test-server.yml +++ b/.github/workflows/test-server.yml @@ -3,7 +3,7 @@ name: Python Tests and Ruff on: [push] jobs: - uv-example: + test: name: python runs-on: ubuntu-latest @@ -26,5 +26,8 @@ jobs: run: | uv run coverage run -m unittest discover -v -s ./test -p "*_test.py" - - name: Run Ruff - run: uv run ruff check --output-format=github . + ruff: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: astral-sh/ruff-action@v1