aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorPhilip Kaludercic <philipk@posteo.net>2021-10-15 08:27:01 +0200
committerPhilip Kaludercic <philipk@posteo.net>2021-10-15 08:27:01 +0200
commite689153ae07b11b7f9ac8536d7bd1d3b585201f9 (patch)
tree7e13d6339280d8fb30b6cb75657a7ebf3350be55 /.github
parent09bf8d84c14494299100a6929398da0a31b99932 (diff)
Merge compile and run into one GitHub Action job
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/makefile.yml32
1 files changed, 3 insertions, 29 deletions
diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml
index a3a1e68..21731ff 100644
--- a/.github/workflows/makefile.yml
+++ b/.github/workflows/makefile.yml
@@ -9,34 +9,8 @@ on:
- '**.md'
jobs:
- compile:
- name: 'Compile'
- runs-on: ubuntu-latest
- strategy:
- matrix:
- emacs-version:
- - '24.3'
- - '24.4'
- - '24.5'
- - '25.1'
- - '25.2'
- - '25.3'
- - '26.1'
- - '26.2'
- - '26.3'
- - '27.1'
- - '27.2'
- - 'snapshot'
- steps:
- - uses: actions/checkout@v2
- - uses: purcell/setup-emacs@master
- with:
- version: ${{ matrix.emacs-version }}
- - name: Compile Elisp files
- run: make -k compile
-
test:
- name: 'Test'
+ name: 'Compile and Test'
runs-on: ubuntu-latest
strategy:
matrix:
@@ -58,5 +32,5 @@ jobs:
- uses: purcell/setup-emacs@master
with:
version: ${{ matrix.emacs-version }}
- - name: Run tests
- run: make test
+ - name: Compile and run tests
+ run: make