Skip to content

Commit 91c8623

Browse files
committed
Update actions/checkout to v6 and comment out vulture step
1 parent ba8adcd commit 91c8623

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

.github/workflows/continuous-deployment.yaml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
steps:
6060
- id: checkout
6161
name: Checkout
62-
uses: actions/checkout@v4
62+
uses: actions/checkout@v6
6363

6464
- name: Setup uv
6565
uses: astral-sh/setup-uv@v6
@@ -72,14 +72,14 @@ jobs:
7272
name: Install Python dependencies
7373
run: uv sync --extra dev
7474

75-
- id: vulture
76-
name: Run vulture
77-
timeout-minutes: 10
78-
run: >-
79-
uv run vulture
80-
--min-confidence 90
81-
--exclude "tests/*,_notebooks/*,docs/*"
82-
./
75+
# - id: vulture
76+
# name: Run vulture
77+
# timeout-minutes: 10
78+
# run: >-
79+
# uv run vulture
80+
# --min-confidence 90
81+
# --exclude "tests/*,_notebooks/*,docs/*"
82+
# your_package_name
8383

8484
test-python:
8585
name: Test Python code
@@ -106,12 +106,10 @@ jobs:
106106
- id: install-python-dependencies
107107
name: Install Python dependencies
108108
run: uv sync --extra test --python ${{ matrix.python }}
109-
shell: bash
110109

111110
- id: tests
112111
name: Run tests
113112
run: uv run pytest --cov -sv
114-
shell: bash
115113

116114
build:
117115
name: Build release candidate

0 commit comments

Comments
 (0)