Skip to content

Commit a0806ed

Browse files
committed
Add ruff linting
1 parent 056adad commit a0806ed

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.github/workflows/pages.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ jobs:
3636
python-version-file: ".python-version"
3737
- name: Install Python Dependencies
3838
run: make env
39+
- name: Check Site Generator Code
40+
run: make check
3941
- name: Build Static Site
4042
run: make build
4143
- name: Setup Pages

Makefile

+5-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,11 @@ clean: ## Make a clean workspace
1515
@rm -rf _output
1616
@git clean -f .
1717

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
2023

2124
build: ## Make a local copy of the blog
2225
python generate.py

requirements-dev.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ruff

0 commit comments

Comments
 (0)