Skip to content

chore(deps): Bump codecov/codecov-action from 3.1.6 to 4.0.0 #817

chore(deps): Bump codecov/codecov-action from 3.1.6 to 4.0.0

chore(deps): Bump codecov/codecov-action from 3.1.6 to 4.0.0 #817

Workflow file for this run

name: codecov
on:
pull_request:
branches:
- main
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
backend:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Set up Go
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version-file: backend/go.mod
cache-dependency-path: backend/go.sum
- name: Build assets
run: |
set -e
make build-backend-assets
- name: Test
run: |
set -e
make test-backend
- name: Upload Report to Codecov
uses: codecov/codecov-action@f30e4959ba63075080d4f7f90cacc18d9f3fafd7 # v4.0.0
with:
file: ./backend/coverage.out
fail_ci_if_error: true
verbose: true