Skip to content

chore(deps): update update all non-major dependencies #388

chore(deps): update update all non-major dependencies

chore(deps): update update all non-major dependencies #388

Workflow file for this run

---
# name of the action
name: test
# trigger on pull_request or push events
on:
pull_request:
push:
# pipeline to execute
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: clone
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: install go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5
with:
# use version from go.mod file
go-version-file: "go.mod"
cache: true
check-latest: true
- name: test
run: |
go test -race -covermode=atomic -coverprofile=coverage.out ./...
- name: coverage
uses: codecov/codecov-action@015f24e6818733317a2da2edd6290ab26238649a # v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage.out