Skip to content

Bump github/codeql-action from 3.25.13 to 3.25.15 #805

Bump github/codeql-action from 3.25.13 to 3.25.15

Bump github/codeql-action from 3.25.13 to 3.25.15 #805

Workflow file for this run

# coverage.yml Generate and upload Go code coverage report to Codecov.
# https://github.com/onflow/atree/blob/main/.github/workflows/coverage.yml
name: coverage
# Remove permissions from top level and grant in jobs.
permissions: {}
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 2
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
check-latest: true
- name: Get dependencies
run: go get -v -t -d ./...
- name: Build project
run: go build ./...
- name: Generate coverage report
run: go test -timeout 60m -race -coverprofile=coverage.txt -covermode=atomic
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0
with:
files: ./coverage.txt
fail_ci_if_error: false # we can set this to true after "Could not find a repository" upload error is fixed
verbose: true # optional (default = false)