Skip to content

Commit f3d3708

Browse files
committed
Vale maintenance. No CI errors, fixes Python issue
1 parent 04ab0bf commit f3d3708

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/vale.yml

+12
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,16 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v4
10+
- name: Set up Python
11+
uses: actions/setup-python@v4
12+
with:
13+
python-version: '3.x'
14+
- name: Install docutils in a virtual environment
15+
run: |
16+
python -m venv venv
17+
source venv/bin/activate
18+
pip install docutils
1019
- uses: errata-ai/vale-action@reviewdog
20+
with:
21+
fail_on_error: false
22+

0 commit comments

Comments
 (0)