Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,21 @@ jobs:
with:
version: ${{matrix.emacs_version}}

# Emacs needs GPG to verify package signatures. The MSYS2 GPG
# bundled with the GitHub Windows runner cannot handle native
# Windows paths, so we install a native Windows port of GPG
# instead.
- name: Setup Scoop and GPG on Windows
if: startsWith (matrix.os, 'windows')
uses: MinoruSekine/[email protected]
with:
apps: gpg
scoop_update: false
- name: Add GPG at the beginning of PATH on Windows
if: startsWith (matrix.os, 'windows')
run: |
echo "C:\Users\runneradmin\scoop\apps\gpg\current\bin" >> $env:GITHUB_PATH

- name: Install Eldev
if: "!startsWith (matrix.os, 'windows')"
run: curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/github-eldev | sh
Expand Down
Loading