File tree 3 files changed +8
-2
lines changed
3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 36
36
python-version-file : " .python-version"
37
37
- name : Install Python Dependencies
38
38
run : make env
39
+ - name : Check Site Generator Code
40
+ run : make check
39
41
- name : Build Static Site
40
42
run : make build
41
43
- name : Setup Pages
Original file line number Diff line number Diff line change @@ -15,8 +15,11 @@ clean: ## Make a clean workspace
15
15
@rm -rf _output
16
16
@git clean -f .
17
17
18
- env : # # Make the current python environment install the generator prereqs
19
- @pip install -r requirements.txt
18
+ check : # # Make a ruff check of code lint
19
+ @ruff check generate.py
20
+
21
+ env : # # Make the current python environment install all prereqs
22
+ @pip install -r requirements.txt -r requirements-dev.txt
20
23
21
24
build : # # Make a local copy of the blog
22
25
python generate.py
Original file line number Diff line number Diff line change
1
+ ruff
You can’t perform that action at this time.
0 commit comments