We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d7c0db commit ba178b5Copy full SHA for ba178b5
3 files changed
.github/workflows/ci.yml
@@ -21,10 +21,13 @@ jobs:
21
with:
22
python-version: 3.x
23
- run: python3 -m pip install -r requirements-dev.txt
24
+ - run: pre-commit install
25
+ - run: pre-commit install-hooks
26
- run: pre-commit run --all-files
27
28
# Build and deploy the site
29
deploy:
30
+ needs: validate
31
runs-on: ubuntu-latest
32
steps:
33
- uses: actions/checkout@v4
.markdownlintignore
@@ -1,4 +1,6 @@
1
# .markdownlintignore
2
3
# TODO: Lint these files
4
+.github/
5
docs/
6
+README.md
.pre-commit-config.yaml
@@ -6,7 +6,7 @@
7
repos:
8
- repo: https://github.com/pre-commit/pre-commit-hooks
9
- rev: v3.2.0
+ rev: v5.0.0
10
hooks:
11
- id: trailing-whitespace
12
- id: end-of-file-fixer
0 commit comments