Skip to content

Commit

Permalink
fix: add custom Makefile stage to install deps
Browse files Browse the repository at this point in the history
  • Loading branch information
skarzi committed Nov 11, 2023
1 parent 4921dea commit b4e7b58
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: install dependencies
run: |
sudo apt-get install shellcheck
pip install -r requirements.txt
make install
npm install --global markdownlint-cli
- name: lint files
run: make lint
Expand Down
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
SHELL:=/usr/bin/env bash

.PHONY: install
install:
@pip install --upgrade pip setuptools
@pip install --requirement requirements.txt

.PHONY: lint_yaml
lint_yaml:
yamllint --format github .
Expand Down

0 comments on commit b4e7b58

Please sign in to comment.