shuttle-drone-templates/actions/build_test.go

17 lines
196 B
Go
Raw Permalink Normal View History

2023-04-07 20:00:31 +02:00
package main
import (
"context"
"testing"
"github.com/stretchr/testify/assert"
)
func TestBuild(t *testing.T) {
t.Parallel()
err := Build(context.Background())
assert.NoError(t, err)
}