Skip to content

chore(deps): bump golang.org/x/net from 0.37.0 to 0.38.0 #164

chore(deps): bump golang.org/x/net from 0.37.0 to 0.38.0

chore(deps): bump golang.org/x/net from 0.37.0 to 0.38.0 #164

Workflow file for this run

name: "Run Tests and Lint Code"
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: Run Tests and Lint Code
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "1.24"
- run: go test -coverprofile=coverage.out -timeout=1m ./...
- run: go tool gcov2lcov -infile=coverage.out -outfile=coverage.lcov
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: coverage.lcov