Skip to content

chore(deps): Bump anchore/sbom-action from 0.15.7 to 0.15.8 #818

chore(deps): Bump anchore/sbom-action from 0.15.7 to 0.15.8

chore(deps): Bump anchore/sbom-action from 0.15.7 to 0.15.8 #818

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@ab904c41d6ece82784817410c45d8b8c02684457 # v3.1.6
with:
file: ./backend/coverage.out
fail_ci_if_error: true
verbose: true