Skip to content

Bump github/codeql-action from 2 to 3 #246

Bump github/codeql-action from 2 to 3

Bump github/codeql-action from 2 to 3 #246

Workflow file for this run

name: Go
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.18
- name: Build
run: go build -v ./...
- name: Test
run: |
go test -v -covermode=count -coverprofile=coverage.out ./...
- name: Coverage
uses: jandelgado/gcov2lcov-action@v1.0.9
- name: Coveralls
uses: coverallsapp/github-action@v2.2.3
with:
github-token: ${{ secrets.github_token }}
path-to-lcov: coverage.lcov