feat: update to shuttle 0.17.2
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone Build is failing

This commit is contained in:
2023-05-05 23:09:58 +02:00
parent eaf13c82ef
commit 9613ec57a4
5 changed files with 3 additions and 3 deletions

16
actions/build_test.go Normal file
View File

@@ -0,0 +1,16 @@
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)
}