From 532f93fbcc2c017cb51eea05c970c24e41c780a1 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Wed, 17 Jun 2020 23:05:09 +0200 Subject: [PATCH] Install tools required by `format.sh` on GitHub Actions The script would silently fail otherwise. --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 840ec330b..abfc2662b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,6 +10,9 @@ jobs: - name: Lint and build documentation run: | + # Install tools used by `_tools/format.sh`. + sudo apt-get update -qq + sudo apt-get install -qq dos2unix recode # Append the `PATH` so we can run `codespell`. export PATH="$HOME/.local/bin:$PATH" pip3 install -r requirements.txt