diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 85504da..d66e6a3 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -21,4 +21,8 @@ jobs: uses: actions/setup-go@master with: go-version: ${{ matrix.go }} - - run: go test -race ./... + - name: Run unit tests + run: go test -race ./... + - name: Run benchmark tests + run: go test -race ./... + working-directory: benchmark