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 a66bcb8 commit 8274836
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ 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 upgrade -y
sudo apt-get update -y
sudo apt-get install apt-utils asciidoctor pipx python3-pip golang-go -y
pipx ensurepath
pipx install codespell
- name: markdown-syntax
if: ${{ !env.ACT }}
run: |
Expand Down

0 comments on commit 8274836

Please sign in to comment.