Remove ImageMagick installation via Chocolatey from GitHub Workflows

ImageMagick is pre-installed on Windows runners.
This commit is contained in:
rlaphoenix
2022-11-13 09:08:15 +00:00
parent c20ea9dc4f
commit 819e030252
2 changed files with 0 additions and 3 deletions
-1
View File
@@ -25,7 +25,6 @@ jobs:
run: | run: |
python -m pip install --upgrade pip wheel python -m pip install --upgrade pip wheel
poetry install poetry install
choco install imagemagick
- name: Cache external Homebrew Tools - name: Cache external Homebrew Tools
id: cache-hb-tools id: cache-hb-tools
uses: actions/cache@v3 uses: actions/cache@v3
-2
View File
@@ -37,8 +37,6 @@ jobs:
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Build project - name: Build project
run: poetry build run: poetry build
- name: Install ImageMagick
run: choco install imagemagick
- name: Cache external Homebrew Tools - name: Cache external Homebrew Tools
id: cache-hb-tools id: cache-hb-tools
uses: actions/cache@v3 uses: actions/cache@v3