We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54088cd commit 4ccf052Copy full SHA for 4ccf052
1 file changed
.github/workflows/build.yml
@@ -6,7 +6,7 @@ on:
6
workflow_dispatch:
7
8
jobs:
9
- build:
+ build-rust:
10
runs-on: ubuntu-latest
11
steps:
12
- uses: actions/checkout@v4
@@ -27,3 +27,15 @@ jobs:
27
- name: Static code analysis with clippy
28
run: |
29
cargo clippy --all -- -D warnings
30
+
31
+ tests-emacs:
32
+ runs-on: ubuntu-latest
33
+ steps:
34
+ - uses: actions/checkout@v4
35
+ - uses: purcell/setup-emacs@master
36
+ with:
37
+ version: 29.4
38
+ - name: Run ERT tests
39
+ working-directory: emacs
40
+ run: |
41
+ emacs -q -batch -l ert -l deps.el -l sepl-mode.el -l tests.el -f ert-run-tests-batch-and-exit
0 commit comments