Skip to content

Bump github/codeql-action from 3.24.6 to 3.24.8 #6

Bump github/codeql-action from 3.24.6 to 3.24.8

Bump github/codeql-action from 3.24.6 to 3.24.8 #6

Workflow file for this run

name: "Code Coverage"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@v5
with:
go-version: 'stable'
check-latest: true
- name: Run test coverage
run: go test -race -coverprofile=coverage.out -covermode=atomic ./...
- uses: codecov/codecov-action@v3
with:
files: coverage.out