diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/test.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a76344a..887c562 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,6 +14,11 @@ jobs: uses: purcell/setup-emacs@master with: version: ${{ matrix.emacs_version }} + - name: Check out compat + uses: actions/checkout@v2 + with: + repository: phikal/compat.el + path: compat - name: Check out transient uses: actions/checkout@v2 with: @@ -32,6 +37,8 @@ jobs: run: | python -m pip install --upgrade pip pip install snakemake + - name: Build compat + run: make -C compat compile - name: Build snakemake-mode run: make -C snakemake-mode all - name: Test snakemake-mode |