We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3ead85d + 0c54d5c commit 5f00a53Copy full SHA for 5f00a53
1 file changed
.github/workflows/publish.yml
@@ -35,14 +35,14 @@ jobs:
35
- name: Install dependencies
36
run: |
37
python -m pip install --upgrade pip
38
- pip install build twine wheel setuptools ruff black
+ pip install build twine wheel setuptools ruff black tomllib
39
pip install -r requirements.txt
40
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
41
42
- - name: Run Ruff linting
+ - name: Run linting and formatting
43
44
- # Run Ruff linter
45
- ruff check .
+ # Run linter
+ black --check --diff stagehand
46
47
# Run Ruff formatter check (without modifying files)
48
ruff check stagehand
0 commit comments