Skip to content

Commit

Permalink
rm comments
Browse files Browse the repository at this point in the history
  • Loading branch information
NagaTulasi committed Sep 19, 2024
1 parent 0233fd0 commit 85b41ed
Showing 3 changed files with 3 additions and 45 deletions.
44 changes: 1 addition & 43 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -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/[email protected]
# 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/[email protected]
# 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/[email protected]
with:
file: coverage.txt
file: coverage.txt
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
build
coverage.out
coverage.out
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -137,4 +137,4 @@ else
go test -mod=readonly $(ARGS) $(EXTRA_ARGS) $(TEST_PACKAGES)
endif

.PHONY: run-tests test test-all $(TEST_TARGETS)
.PHONY: run-tests test test-all $(TEST_TARGETS)

0 comments on commit 85b41ed

Please sign in to comment.