Skip to content

build(deps): bump crate-ci/typos from 1.44.0 to 1.45.0 #4039

build(deps): bump crate-ci/typos from 1.44.0 to 1.45.0

build(deps): bump crate-ci/typos from 1.44.0 to 1.45.0 #4039

Workflow file for this run

name: Test Go code
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions: read-all
jobs:
test-go:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
show-progress: false
- name: Set up Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version-file: go.ver
cache: false
- name: Test
run: make test
- name: Check for local changes
run: git diff --exit-code
- name: Report code coverage
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./.cover/coverage.out
fail_ci_if_error: true
handle_no_reports_found: true
continue-on-error: true