More workflow good times

cat-town
Dan Buch 6 years ago
parent 739716d232
commit ef691c9c75
Signed by: meatballhat
GPG Key ID: 9685130D8B763EA7

@ -5,5 +5,5 @@ workflow "Main" {
action "vuefun Build" { action "vuefun Build" {
uses = "cedrickring/golang-action/go1.11@1.1.1" uses = "cedrickring/golang-action/go1.11@1.1.1"
args = "make -C vuefun" args = "make -C vuefun clean all"
} }

@ -1,9 +1,15 @@
BUILD_NAME := $(shell go env GOOS)_$(shell go env GOARCH) BUILD_NAME := $(shell go env GOOS)_$(shell go env GOARCH)
TARGETS := build/$(BUILD_NAME)/vuefun-app TARGETS := build/$(BUILD_NAME)/vuefun-app
.PHONY: all .PHONY: all
all: $(TARGETS) all: build test
.PHONY: build
build: $(TARGETS)
.PHONY: test
test:
go test -v
.PHONY: wat .PHONY: wat
wat: wat:

@ -1 +1 @@
module . module github.com/meatballhat/box-o-sand/vuefun

Loading…
Cancel
Save