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 9b3f846 commit e6b4fcfCopy full SHA for e6b4fcf
.github/workflows/test.yml
@@ -45,6 +45,19 @@ jobs:
45
with:
46
version: ${{matrix.emacs_version}}
47
48
+ # Emacs needs GPG to verify package signatures. The MSYS2 GPG
49
+ # bundled with the GitHub Windows runner cannot handle native
50
+ # Windows paths, so we install a native Windows port of GPG
51
+ # instead.
52
+ - uses: MinoruSekine/setup-scoop@v4.0.2
53
+ with:
54
+ apps: gpg
55
+ scoop_update: false
56
+ - name: Add GPG at the beginning of PATH on Windows
57
+ if: startsWith (matrix.os, 'windows')
58
+ run: |
59
+ echo "C:\Users\runneradmin\scoop\apps\gpg\current\bin" >> $env:GITHUB_PATH
60
+
61
- name: Install Eldev
62
if: "!startsWith (matrix.os, 'windows')"
63
run: curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/github-eldev | sh
0 commit comments