Skip to content

Commit b68f9b4

Browse files
committed
fix actions
1 parent d028c61 commit b68f9b4

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/pytest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ jobs:
1616
with:
1717
python-version: ${{ matrix.python-version }}
1818
- run: uv sync --dev
19-
- run: uv run pytest -v --cov=funlib tests
19+
- run: uv run pytest -v --cov=src tests

.github/workflows/ruff.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v4
1111
- uses: astral-sh/setup-uv@v5
12-
- run: uv run ruff check funlib tests
12+
- run: uv run ruff check src tests
1313

1414
format:
1515
name: Format
1616
runs-on: ubuntu-latest
1717
steps:
1818
- uses: actions/checkout@v4
1919
- uses: astral-sh/setup-uv@v5
20-
- run: uv run ruff format --check funlib tests
20+
- run: uv run ruff format --check src tests

0 commit comments

Comments
 (0)