Skip to content

Commit

Permalink
.github/workflows/codespell.yml:use pipx to install codespell
Browse files Browse the repository at this point in the history
  • Loading branch information
RandyMcMillan committed Jun 17, 2024
1 parent ff6e5ee commit b283465
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,10 @@ jobs:
- name: install-codespell-asciidoctor
run: |
export DEBIAN_FRONTEND=noninteractive
sudo apt list --upgradable
sudo apt upgrade -y
sudo apt update -y
sudo apt install apt-utils asciidoctor python3-pip golang-go -y
pip3 install -U codespell
sudo apt-get update -y
sudo apt-get install apt-utils asciidoctor pipx python3-pip golang-go -y --fix-missing
pipx ensurepath
pipx install codespell
- name: markdown-syntax
if: ${{ !env.ACT }}
run: |
Expand Down

0 comments on commit b283465

Please sign in to comment.