diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2023-01-24 20:11:28 +0100 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2023-01-24 20:53:21 +0100 |
| commit | c110db282978ccd65416d0afc987b4987245a115 (patch) | |
| tree | 86e5f1d3c4726609fc545546649e3b9e2f025bd1 /.github/workflows | |
| parent | e262be30f3216a42c41e26cb81d75e4b8c9b331d (diff) | |
Ensure that Compat works both interpreted and compiled
See https://github.com/magit/magit/issues/4858
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/makefile.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index db67eaa..0764e34 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -38,11 +38,13 @@ jobs: - uses: purcell/setup-emacs@master with: version: ${{ matrix.emacs-version }} + - name: Run interpreted tests + run: make test - name: Compile run: | sed -i "s/ no-byte-compile: t;//" compat-macs.el compat-tests.el make compile - - name: Run tests + - name: Run compiled tests run: make test - name: Make info run: make compat.info |
