Skip to content

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

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 #4172

Workflow file for this run

# name of the action
name: test
# trigger on pull_request or push events
on:
pull_request:
push:
permissions:
contents: read
# pipeline to execute
jobs:
test:
permissions:
pull-requests: write # so coveralls can write to the PR
runs-on: ubuntu-latest
steps:
- name: clone
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- name: install go
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
with:
# use version from go.mod file
go-version-file: 'go.mod'
cache: true
check-latest: true
- name: test
run: |
make test-coverage
- name: install goveralls
run: go install github.com/mattn/goveralls@latest
- name: send to coveralls
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: goveralls -coverprofile=coverage.out -service=github