Skip to content

Commit

Permalink
ci: main action refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
agukrapo committed Jul 21, 2024
1 parent dfb496b commit 6718b47
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ jobs:
- name: Install build dependencies
run: make deps

- name: Code build
run: make build

- name: Code format
run: make format && git diff --exit-code

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ build: clean
@fyne-cross windows -arch=amd64 --app-id playlist.creator ./cmd/gui
@mv ./fyne-cross/bin/windows-amd64/playlist-creator.exe ./bin/${NAME}_gui_windows-amd64.exe

test: build
test:
@echo "Testing ${NAME}..."
@gotestsum $(shell go list ./... | grep -v cmd/gui) -cover -race -shuffle=on

Expand Down

0 comments on commit 6718b47

Please sign in to comment.