diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e1f212f..ff15359 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,45 +1,3 @@ -# name: Tests - -# on: -# pull_request: -# push: -# branches: -# - main - -# concurrency: -# group: ci-${{ github.ref }}-tests -# cancel-in-progress: true - -# jobs: -# tests: -# name: Tests and code coverage -# runs-on: ubuntu-latest -# steps: -# - name: Install GO -# uses: actions/setup-go@v4 -# with: -# go-version: "1.22" -# - name: Checkout code -# uses: actions/checkout@v3 -# - id: get_diff -# uses: technote-space/get-diff-action@v6.1.2 -# with: -# PATTERNS: | -# **/**.go -# go.mod -# go.sum -# **/go.mod -# **/go.sum -# - name: run all tests and generate coverage -# run: go test -v -mod=readonly -timeout 30m -coverprofile=coverage.txt -tags='norace' -covermode=atomic `go list ./... | grep -v simapp` -# if: steps.get_diff.outputs.changed == 'true' -# - name: Upload codecov report -# uses: codecov/codecov-action@v3.1.0 -# with: -# file: coverage.txt -# if: steps.get_diff.outputs.changed == 'true' - - name: Tests on: @@ -68,4 +26,4 @@ jobs: - name: Upload codecov report uses: codecov/codecov-action@v3.1.0 with: - file: coverage.txt \ No newline at end of file + file: coverage.txt diff --git a/.gitignore b/.gitignore index 349b466..74427ba 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ build -coverage.out \ No newline at end of file +coverage.out diff --git a/Makefile b/Makefile index 97bd415..e6ead21 100644 --- a/Makefile +++ b/Makefile @@ -137,4 +137,4 @@ else go test -mod=readonly $(ARGS) $(EXTRA_ARGS) $(TEST_PACKAGES) endif -.PHONY: run-tests test test-all $(TEST_TARGETS) \ No newline at end of file +.PHONY: run-tests test test-all $(TEST_TARGETS)