diff options
author | Kyle Meyer <kyle@kyleam.com> | 2023-12-10 15:08:15 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2023-12-10 15:08:32 -0500 |
commit | 75c2a2ee335530d830f54b386fb5a139cb97499a (patch) | |
tree | 36ef4a88173aa9690f0a86f19802de85a4d37824 /.github/workflows | |
parent | c6b6d485bc77d2dc17982b16dcb54f1c8b2025e6 (diff) | |
download | snakemake-mode-75c2a2ee335530d830f54b386fb5a139cb97499a.tar.gz |
ci, make: Support specifying external seq
Transient 0.5.0 requires seq 2.24, which doesn't ship with Emacs until
29.1.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/test.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ea27c1f..3290f39 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,6 +16,14 @@ jobs: uses: purcell/setup-emacs@master with: version: ${{ matrix.emacs_version }} + - name: Check out seq + if: matrix.emacs_version == '26.1' || matrix.emacs_version == '27.2' || matrix.emacs_version == '28.2' + # Note: This relies on Transient's Makefile looking in this spot + # (relative to Transient checkout) by default. + run: | + git clone --branch=externals/seq --depth=1 \ + https://git.savannah.gnu.org/git/emacs/elpa.git seq + echo SEQ_DIR=$PWD/seq >>$GITHUB_ENV - name: Check out compat uses: actions/checkout@v2 with: |