This repository has been archived on 2022-05-16. You can view files and clone it, but cannot push or open issues or pull requests.
go-xkcd-reader/magefile.go
2022-04-26 17:04:21 +02:00

32 lines
659 B
Go

//go:build mage
package main
import (
"github.com/magefile/mage/sh"
)
// Run runs go mod download and then runs the binary.
func Run() error {
if err := sh.Run("go", "mod", "download"); err != nil {
return err
}
return sh.Run("go", "run", "-p", "2", "./...")
}
// Build runs go mod download and then builds the binary.
func Build() error {
if err := sh.Run("go", "mod", "download"); err != nil {
return err
}
return sh.Run("go", "build", "-p", "2", "./...")
}
// Test runs go mod download and then runs tests.
func Test() error {
if err := sh.Run("go", "mod", "download"); err != nil {
return err
}
return sh.Run("go", "test", "./...")
}