Skip to content

Commit

Permalink
Make on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
massivemadness committed Aug 15, 2024
1 parent b79b265 commit 29205d8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
go-version: '1.22.5'

- name: Build
run: go build -v ./...
run: make build-binary

- name: Test
run: go test -v ./...
run: make test
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ build-image:
run:
go run ./cmd/articles-server

.PHONY: test
test:
go test ./...

.PHONY: clean
clean:
rm -r ./build/output

0 comments on commit 29205d8

Please sign in to comment.