Skip to content

Commit b72a94d

Browse files
committed
Refactor make test.
1 parent da97911 commit b72a94d

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ jobs:
1212
- uses: oven-sh/setup-bun@v1
1313
- name: Install ImageMagick
1414
run: env HOMEBREW_NO_AUTO_UPDATE=1 brew install imagemagick
15-
- name: make test
16-
run: make test
15+
- run: make lint
16+
- run: make test-build
1717
- run: make check-readme-cli-help

Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,11 @@ format:
1212
cargo fmt
1313

1414
.PHONY: test
15-
test:
16-
./test/test.sh
15+
test: lint test-build check-readme-cli-help
16+
17+
.PHONY: test-build
18+
test-build:
19+
./test/test-build.sh
1720

1821
.PHONY: publish
1922
publish:
File renamed without changes.

0 commit comments

Comments
 (0)