We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3346285 commit 01cbfc4Copy full SHA for 01cbfc4
.github/workflows/build-and-test.yml
@@ -74,6 +74,10 @@ jobs:
74
runs-on: ${{matrix.options.os}}
75
76
steps:
77
+ - name: Install Ubuntu prerequisites
78
+ if: ${{ contains(matrix.options.os, 'ubuntu') }}
79
+ run: sudo apt-get -y install libssl-dev libgdiplus libgif-dev libglib2.0-dev libcairo2-dev libtiff-dev libexif-dev
80
+
81
- name: Git Config
82
shell: bash
83
run: |
@@ -165,9 +169,6 @@ jobs:
165
169
if: (github.event_name == 'push')
166
170
167
171
168
- - name: Install ubuntu prerequisites
- if: ${{ contains(matrix.options.os, 'ubuntu') }}
- run: sudo apt-get -y install libssl-dev libgdiplus libgif-dev libglib2.0-dev libcairo2-dev libtiff-dev libexif-dev
172
173
174
0 commit comments