Skip to content

Commit

Permalink
Fix Readability workflow (#2330)
Browse files Browse the repository at this point in the history
In an attempt to fix the readability workflow check, I'm updating the
workflow to a more recent version of the setup-python GitHub action,
updating to a newer version of Python, and removing the x64 architecture
since that's the default when unspecified. 🤞
  • Loading branch information
dacharyc committed Nov 30, 2022
1 parent e8f0875 commit a81b33f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/readability.yml
Expand Up @@ -38,11 +38,10 @@ jobs:
node ./docdoctor getReadabilityText "$file"
done
- name: Setup Python
uses: actions/setup-python@v4.1.0
uses: actions/setup-python@v4.3.0
with:
# We need Python version 3.5 or greater for rglob.
python-version: "3.6"
architecture: "x64"
python-version: "3.9"
- name: Install textstat
run: pip install textstat
- name: Create scores directory and save PR number.
Expand Down

0 comments on commit a81b33f

Please sign in to comment.