Skip to content

chore(deps): bump actions/setup-python from 5.0.0 to 5.1.0 #262

chore(deps): bump actions/setup-python from 5.0.0 to 5.1.0

chore(deps): bump actions/setup-python from 5.0.0 to 5.1.0 #262

Workflow file for this run

name: Linux Unit Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ^1.13
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Test
run: go test -covermode=count -coverprofile=profile.cov ./pkg/...
- name: Send coverage
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
GO111MODULE=off go get github.com/mattn/goveralls
$(go env GOPATH)/bin/goveralls -coverprofile=profile.cov -service=github