Skip to content

Commit 60494a7

Browse files
ci: update check and style steps names to lint and format for clarity
1 parent 70a96d8 commit 60494a7

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
retention-days: 5
6666
if-no-files-found: error
6767

68-
check:
68+
lint:
6969
needs: build
7070

7171
runs-on: ubuntu-latest
@@ -102,8 +102,8 @@ jobs:
102102
- name: Run clj-kondo
103103
run: clj-kondo --lint source
104104

105-
style:
106-
needs: check
105+
format:
106+
needs: lint
107107

108108
runs-on: ubuntu-latest
109109

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
.PHONY: run check style clean package run-package
1+
.PHONY: run lint format clean package run-package
22

33
run:
44
@clj -M:run
55

6-
check:
6+
lint:
77
@clj-kondo --lint source
88

9-
style:
9+
format:
1010
@cljfmt check source
1111

1212
clean:

0 commit comments

Comments
 (0)