diff options
author | Joel Challis <git@zvecr.com> | 2022-02-22 02:57:52 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-22 02:57:52 +0000 |
commit | 5dcc0743f596f97cbae548315b48478ce4d81e47 (patch) | |
tree | 40e5318c6cfbc708d4ffc4664403a6a6418906ae /.github | |
parent | e0342fec18e4b6b14a820d7a5d62954853c91756 (diff) | |
download | qmk_firmware-5dcc0743f596f97cbae548315b48478ce4d81e47.tar.gz qmk_firmware-5dcc0743f596f97cbae548315b48478ce4d81e47.zip |
Install extra CLI dependencies that are missing (#16425)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/format.yaml | 1 | ||||
-rw-r--r-- | .github/workflows/format_push.yaml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml index f1525526ce..9415861eaa 100644 --- a/.github/workflows/format.yaml +++ b/.github/workflows/format.yaml @@ -22,6 +22,7 @@ jobs: - name: Install dependencies run: | apt-get update && apt-get install -y dos2unix + pip3 install -r requirements-dev.txt - uses: actions/checkout@v2 with: diff --git a/.github/workflows/format_push.yaml b/.github/workflows/format_push.yaml index b79130f17a..5a17a4d65c 100644 --- a/.github/workflows/format_push.yaml +++ b/.github/workflows/format_push.yaml @@ -16,6 +16,7 @@ jobs: - name: Install dependencies run: | apt-get update && apt-get install -y dos2unix + pip3 install -r requirements-dev.txt - uses: actions/checkout@v2 with: |