Skip to content

bot: Bump @typescript-eslint/parser from 6.7.0 to 6.7.2 in /playground #7346

bot: Bump @typescript-eslint/parser from 6.7.0 to 6.7.2 in /playground

bot: Bump @typescript-eslint/parser from 6.7.0 to 6.7.2 in /playground #7346

# Copyright 2022 Democratized Data Foundation
#
# Use of this software is governed by the Business Source License
# included in the file licenses/BSL.txt.
#
# As of the Change Date specified in that file, in accordance with
# the Business Source License, use of this software will be governed
# by the Apache License, Version 2.0, included in the file
# licenses/APL.txt.
name: Code Test Coverage Workflow
on:
pull_request:
branches:
- master
- develop
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
branches:
- master
- develop
jobs:
code-test-coverage:
name: Code test coverage job
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Go environment explicitly
uses: actions/setup-go@v3
with:
go-version: "1.20"
check-latest: true
- name: Generate full test coverage report using go-acc
run: make test:coverage
- name: Upload coverage to Codecov without token, retry on failure
env:
codecov_secret: ${{ secrets.CODECOV_TOKEN }}
if: env.codecov_secret == ''
uses: Wandalen/wretry.action@v1.0.36
with:
attempt_limit: 5
attempt_delay: 10000
action: codecov/codecov-action@v3
with: |
name: defradb-codecov
files: ./coverage.txt
flags: all-tests
os: 'linux'
fail_ci_if_error: true
verbose: true
- name: Upload coverage to Codecov with token
env:
codecov_secret: ${{ secrets.CODECOV_TOKEN }}
if: env.codecov_secret != ''
uses: codecov/codecov-action@v3
with:
token: ${{ env.codecov_secret }}
name: defradb-codecov
files: ./coverage.txt
flags: all-tests
os: 'linux'
fail_ci_if_error: true
verbose: true
# path_to_write_report: ./coverage/codecov_report.txt
# directory: ./coverage/reports/