diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 98465aa..3e71158 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -19,3 +19,6 @@ jobs: - name: Build run: make + + - name: Test + run: make test diff --git a/GNUmakefile b/GNUmakefile index ef22731..f18bd12 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -23,4 +23,4 @@ clean: -rm ${ALL_TARGERS} test: - go test ./... + go test ./sippy