Skip to content

Commit 7eaa46b

Browse files
committed
fix: shell quoting breaks builds
1 parent a5133f6 commit 7eaa46b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/emacs-eldev.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ jobs:
3232
uses: actions/checkout@v4
3333

3434
- name: Ensure that copyright notices are up-to-date
35-
run: ${ELDEV} "${ELDEV_ARGS} doctor up-to-date-copyright --all-tests"
35+
run: ${ELDEV} ${ELDEV_ARGS} doctor up-to-date-copyright --all-tests
3636

3737
- name: Lint the project
38-
run: ${ELDEV} "${ELDEV_ARGS} lint"
38+
run: ${ELDEV} ${ELDEV_ARGS} lint
3939

4040
- name: Compile the project
41-
run: ${ELDEV} "${ELDEV_ARGS} compile --warnings-as-errors"
41+
run: ${ELDEV} ${ELDEV_ARGS} compile --warnings-as-errors
4242

4343
- name: Test the project
4444
# Add --expect 10 to ensure a minimum number of tests!
45-
run: ${ELDEV} "${ELDEV_ARGS} test"
45+
run: ${ELDEV} ${ELDEV_ARGS} test

0 commit comments

Comments
 (0)