From 881e8157535699d75e055216ba40a8df3c80f945 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Mon, 18 Dec 2023 10:28:30 +0000 Subject: [PATCH] Update tests.yaml --- .github/workflows/tests.yaml | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index e891a139b0..b38204aeb8 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -10,18 +10,6 @@ on: branches: - "**" jobs: - golangci: - name: Lint - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-go@v3 - with: - go-version: 1.19 - check-latest: true - cache: true - - name: golangci-lint - uses: golangci/golangci-lint-action@v3 unittests: name: Unit Tests runs-on: ubuntu-latest @@ -43,23 +31,3 @@ jobs: env: IN_TRAVIS_CI: yes RICHGO_FORCE_COLOR: 1 - summary: - name: Summary Report - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Set up Go - uses: actions/setup-go@v3 - with: - go-version: 1.19 - check-latest: true - cache: true - - name: Get dependencies - run: | - go install github.com/mfridman/tparse@latest - go get -v -t -d ./... - - name: Run tests - id: tests - run: go test -v -race -cover -json -bench=. ./... | tparse -notests -format=markdown >> $GITHUB_STEP_SUMMARY - env: - IN_TRAVIS_CI: yes