Update dependencies and workflows #705
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- '**' | |
pull_request: | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }}-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu, windows, macos ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Go with cache | |
uses: jfrog/.github/actions/install-go-with-cache@main | |
# Run tests | |
- name: Tests | |
run: go test -v -race -covermode atomic -coverprofile=covprofile ./... | |
# Generate code coverage | |
- name: Send coverage | |
run: | | |
go install github.com/mattn/goveralls@latest | |
goveralls -coverprofile=covprofile -service=github | |
env: | |
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
if: runner.os == 'Linux' |