feat: bump Go versions #188
Merged
This check has been archived and is scheduled for deletion.
Learn more about checks retention
Travis CI / Travis CI - Pull Request
succeeded
Aug 17, 2023 in 4m 15s
Build Passed
The build passed, just like the previous build.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #188 build: bump go versions.
Any changes that have been made to the main branch before the build ran are also included.
Jobs and Stages
This build has three jobs, running in parallel.
Job | Go | ENV | OS | State |
---|---|---|---|---|
1148.1 | 1.19.x | GO111MODULE=on | Linux | passed |
1148.2 | 1.20.x | GO111MODULE=on | Linux | passed |
1148.3 | 1.21.x | GO111MODULE=on | Linux | passed |
Build Configuration
Build Option | Setting |
---|---|
Language | Go |
Operating System | Linux (Jammy) |
Go Versions | 1.19.x, 1.20.x, 1.21.x |
Build Configuration
{
"language": "go",
"os": [
"linux"
],
"dist": "jammy",
"go": [
"1.19.x",
"1.20.x",
"1.21.x"
],
"notifications": {
"email": [
{
"enabled": false
}
]
},
"env": [
"global={:GO111MODULE=>\"on\"}"
],
"before_install": [
"sudo apt-get update"
],
"install": [
"curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh| sh -s -- -b $(go env GOPATH)/bin v1.51.2",
"curl -sfL https://raw.githubusercontent.com/securego/gosec/master/install.sh | sh -s -- -b $(go env GOPATH)/bin"
],
"script": [
"make tidy",
"make test",
"make lint",
"make scan-gosec"
],
"before_deploy": [
"nvm install 18",
"node --version",
"npm --version",
"npm install",
"pip install --user bump2version"
],
"deploy": [
{
"provider": "script",
"script": "npm run semantic-release",
"skip_cleanup": true,
"on": {
"go": "1.19.x",
"branch": [
"main"
]
}
}
]
}
Loading