Skip to content

Commit

Permalink
Addressing PIP stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
ctauchen committed Oct 15, 2024
1 parent e438138 commit b13858c
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/vale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Set up Python environment
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'

- name: Install docutils in a virtual environment
run: |
python -m venv venv
source venv/bin/activate
pip install docutils
- uses: errata-ai/vale-action@reviewdog
with:
fail_on_error: false
Expand Down

0 comments on commit b13858c

Please sign in to comment.