-
Notifications
You must be signed in to change notification settings - Fork 24
/
.travis.yml
44 lines (37 loc) · 1.12 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
language: go
dist: jammy
notifications:
email: false
stages:
- name: Build-Test
- name: Semantic-Release
if: (branch = main) AND (type IN (push, api)) AND (fork = false)
# Default "install" and "script" steps.
install:
- curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.61.0
- go install golang.org/x/tools/cmd/goimports@latest
script:
- make all
jobs:
include:
- stage: Build-Test
language: go
go: '1.21.x'
- go: '1.22.x'
- go: '1.23.x'
- name: Detect-Secrets
language: python
python: 3.12
install:
- pip install --upgrade "git+https://github.com/ibm/detect-secrets.git@master#egg=detect-secrets"
script:
- detect-secrets scan --update .secrets.baseline
- detect-secrets -v audit --report --fail-on-unaudited --fail-on-live --fail-on-audited-real .secrets.baseline
- stage: Semantic-Release
language: node_js
node_js: 22
install:
- pip install --user bump-my-version
- npm install
script:
- npm run semantic-release