Skip to content

Commit

Permalink
Cache pip dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
alangshall committed May 8, 2024
1 parent d1b8aa2 commit 1dd8307
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/pynblint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,13 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.9'
cache: 'pip' # caching pip dependencies
# Install pynblint
- name: Install Dependencies
run: sudo pip install pynblint
sudo pip install lxml[html_clean]
run: pip install pynblint
pip install lxml[html_clean]
- name: Linter Output
run: pynblint -y $GITHUB_WORKSPACE

0 comments on commit 1dd8307

Please sign in to comment.