Skip to content

Commit

Permalink
fixing pipeline error
Browse files Browse the repository at this point in the history
  • Loading branch information
Kataglyphis committed Jul 16, 2024
1 parent 8f7ad5c commit 6ef1273
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
pip install -r requirements/docs.txt
- name : Build web page
run: |
cd docs/build
cd docs
make html
- name: 📂 Sync files to domain
uses: SamKirkland/[email protected]
Expand Down
18 changes: 18 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,24 @@
"reveal": "always",
"panel": "shared"
}
},
{
"label": "Run mypy",
"type": "shell",
"command": "mypy",
"args": [
"--ignore-missing-imports",
"${workspaceFolder}",
"--exclude",
"'docs|build'"
],
"problemMatcher": [
"$tsc"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}

0 comments on commit 6ef1273

Please sign in to comment.