diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2900415..37e0c51 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,10 +12,11 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Set up Go uses: actions/setup-go@v4 with: go-version: '1.20' + - name: install ginkgo + run: go install github.com/onsi/ginkgo/v2/ginkgo@v2.13.2 - name: Test run: make test diff --git a/Makefile b/Makefile index 179e869..25b968f 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ test: - go test -v ./... - + ginkgo -r -v -p --cover + lint: golangci-lint -v run \ No newline at end of file