Bumps [actions/setup-go](https://github.com/actions/setup-go) from 5.4.0 to 5.5.0.
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](0aaccfd150...d35c59abb0)
---
updated-dependencies:
- dependency-name: actions/setup-go
dependency-version: 5.5.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
60 lines
1.5 KiB
YAML
60 lines
1.5 KiB
YAML
# GitHub Actions - CI for Go to build & test.
|
|
# https://github.com/fxamacker/cbor/workflows/ci.yml
|
|
# See ci-go-cover.yml for coverage and safer-golangci-lint.yml for linting.
|
|
name: ci
|
|
|
|
# Revoke default permissions.
|
|
permissions: {}
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
- 'master'
|
|
- 'release**' # Match both 'release-v2.3.4' and 'release/*'.
|
|
- 'feature/**'
|
|
- 'v**'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
# Test on various OS with default Go version.
|
|
tests:
|
|
name: test ${{matrix.os}} go-${{ matrix.go-version }}
|
|
runs-on: ${{ matrix.os }}
|
|
permissions:
|
|
contents: read
|
|
strategy:
|
|
matrix:
|
|
os: [macos-latest, ubuntu-latest, windows-latest]
|
|
go-version: ['1.20', 1.21, 1.22, 1.23, 1.24]
|
|
steps:
|
|
- name: Install Go
|
|
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
check-latest: true
|
|
|
|
- name: Checkout code
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
- name: Print Go version
|
|
run: go version
|
|
|
|
- name: Get dependencies
|
|
run: go get -v -t -d ./...
|
|
|
|
- name: Build project
|
|
run: go build ./...
|
|
|
|
- name: Run tests
|
|
run: |
|
|
go version
|
|
go test -race -v ./...
|