Skip to content

github-actions(deps): bump github/codeql-action from 2 to 3 #90

github-actions(deps): bump github/codeql-action from 2 to 3

github-actions(deps): bump github/codeql-action from 2 to 3 #90

Workflow file for this run

name: build and test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.16
- name: Build
run: go build -v ./...
- name: Test & generate coverage report
run: go test -v ./... -race -coverprofile=coverage.txt -covermode=atomic
- name: Upload coverage report
uses: codecov/codecov-action@v4
with:
file: ./coverage.txt