We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e4be01 commit 5f00b50Copy full SHA for 5f00b50
.github/workflows/test.yml
@@ -21,13 +21,13 @@ jobs:
21
with:
22
go-version: ${{ matrix.go-version }}
23
- name: Install libgtk-3-dev
24
- if: startsWith(matrix.os, 'ubuntu')
+ if: ${{ startsWith(matrix.os, 'ubuntu') }}
25
run: sudo apt-get update -y && sudo apt-get install -y libgtk-3-dev
26
- name: Install UPX (Linux)
27
28
run: sudo apt-get update -y && sudo apt-get install -y upx-ucl
29
- name: Install UPX (Windows)
30
- if: startsWith(matrix.os, 'windows')
+ if: ${{ startsWith(matrix.os, 'windows') }}
31
run: choco install upx -y
32
- name: Checkout repository
33
uses: actions/[email protected]
0 commit comments