Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
Testing is not triggering like it should
  • Loading branch information
ondrovic committed Aug 25, 2024
1 parent 4f83d23 commit 9802e05
Showing 1 changed file with 32 additions and 32 deletions.
64 changes: 32 additions & 32 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: testing
on:
pull_request:
push:
tags-ignore: "*"
tags-ignore: "*"

jobs:
testing:
Expand All @@ -27,36 +27,36 @@ jobs:
- name: Run tests
run: go test -coverprofile=unit.coverage.out ./...
# Uncomment for uploading when setup
# - name: Upload results to Codecov
# uses: codecov/codecov-action@v4
# with:
# files: ./unit.coverage.out
# fail_ci_if_error: false
# flags: unittests
# name: codecov-umbrella
# token: ${{ secrets.CODECOV_TOKEN }}
# verbose: true
# - name: Upload results to Codecov
# uses: codecov/codecov-action@v4
# with:
# files: ./unit.coverage.out
# fail_ci_if_error: false
# flags: unittests
# name: codecov-umbrella
# token: ${{ secrets.CODECOV_TOKEN }}
# verbose: true

# - name: Upload coverage report
# uses: actions/upload-artifact@v2
# with:
# name: coverage-report
# path: unit.coverage.out
# - name: Upload coverage report
# uses: actions/upload-artifact@v2
# with:
# name: coverage-report
# path: unit.coverage.out

# codacy-coverage-reporter:
# needs: testing
# runs-on: ubuntu-latest
# name: codacy-coverage-reporter
# steps:
# - uses: actions/checkout@v2
# - name: Download coverage report
# uses: actions/download-artifact@v2
# with:
# name: coverage-report
# - name: Run codacy-coverage-reporter
# uses: codacy/[email protected]
# with:
# project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
# coverage-reports: unit.coverage.out
# force-coverage-parser: go

# codacy-coverage-reporter:
# needs: testing
# runs-on: ubuntu-latest
# name: codacy-coverage-reporter
# steps:
# - uses: actions/checkout@v2
# - name: Download coverage report
# uses: actions/download-artifact@v2
# with:
# name: coverage-report
# - name: Run codacy-coverage-reporter
# uses: codacy/[email protected]
# with:
# project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
# coverage-reports: unit.coverage.out
# force-coverage-parser: go

0 comments on commit 9802e05

Please sign in to comment.