From 819e030252ddf8049b52a031450979c58340a3f1 Mon Sep 17 00:00:00 2001 From: rlaphoenix Date: Sun, 13 Nov 2022 09:08:15 +0000 Subject: [PATCH] Remove ImageMagick installation via Chocolatey from GitHub Workflows ImageMagick is pre-installed on Windows runners. --- .github/workflows/cd.yml | 1 - .github/workflows/ci.yml | 2 -- 2 files changed, 3 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 2e36eb2..153cf3a 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -25,7 +25,6 @@ jobs: run: | python -m pip install --upgrade pip wheel poetry install - choco install imagemagick - name: Cache external Homebrew Tools id: cache-hb-tools uses: actions/cache@v3 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 869fe69..7fd5d79 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,8 +37,6 @@ jobs: flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Build project run: poetry build - - name: Install ImageMagick - run: choco install imagemagick - name: Cache external Homebrew Tools id: cache-hb-tools uses: actions/cache@v3