diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2ade961..563bf8e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,6 +2,7 @@ name: test on: pull_request: + push: jobs: test: @@ -17,16 +18,16 @@ jobs: cache: true check-latest: true -# - name: install -# run: | -# go get github.com/mattn/goveralls + - name: install + run: | + go get github.com/mattn/goveralls - name: test run: | go test -race -covermode=atomic -coverprofile=coverage.out ./... -# - name: coverage -# uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0 -# with: -# token: ${{ secrets.CODECOV_TOKEN }} -# file: coverage.out \ No newline at end of file + - name: coverage + uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0 + with: + token: ${{ secrets.CODECOV_TOKEN }} + file: coverage.out \ No newline at end of file