Skip to content

Commit a63569e

Browse files
committed
ci(lint): use raw names of mise tasks, not aliases
1 parent 28a2820 commit a63569e

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,19 +68,19 @@ jobs:
6868

6969
- name: Check spelling
7070
run: |
71-
mise run typos
71+
mise run lint:typos
7272
7373
- name: Lint expl3 code
7474
if: toJSON(inputs) == '{}'
7575
run: |
76-
mise run expl
76+
mise run lint:expl3
7777
7878
- name: Lint expl3 code (slow)
7979
# run only when triggered by `workflow_call` or `workflow_dispatch`
8080
if: toJSON(inputs) != '{}'
8181
run: |
82-
mise run expl --slow --verbose
82+
mise run lint:expl3 --slow --verbose
8383
8484
- name: Lint python code
8585
run: |
86-
mise run ruff
86+
mise run lint:python

mise.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ depends = ['lint:*']
99

1010
[tasks."lint:expl3"]
1111
description = 'Lint expl3 code'
12-
alias = 'expl'
12+
alias = 'explcheck'
1313
env.EXPLCHECK_CONFIG = '{{ get_env(name="EXPLCHECK_CONFIG", default="config/explcheck.toml") }}'
1414
file = 'scripts/lint-expl3.sh'
1515
interactive = true

0 commit comments

Comments
 (0)