Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into search
Browse files Browse the repository at this point in the history
  • Loading branch information
gcla committed Jun 4, 2022
2 parents 4903d64 + 1eacb35 commit b92b83c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,18 @@ jobs:
runs-on: ubuntu-latest
steps:

- name: Set up Go 1.13
uses: actions/setup-go@v2
- name: Set up Go 1.18
uses: actions/setup-go@v3
with:
go-version: 1.13
go-version: '>=1.18.0'
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Build
run: go build -v ./...
Expand Down
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ branches:
git:
depth: false
go:
- 1.18.x
- 1.17.x
- 1.16.x
- 1.15.x
Expand All @@ -34,7 +35,7 @@ deploy:
script: bash scripts/do-release.sh
on:
all_branches: true
condition: "$TRAVIS_OS_NAME = linux && $TRAVIS_GO_VERSION = 1.17.x"
condition: "$TRAVIS_OS_NAME = linux && $TRAVIS_GO_VERSION = 1.18.x"
- provider: gcs
skip_cleanup: true
access_key_id: GOOGKKO2OYB5BE3XDNBJMDRK
Expand All @@ -47,4 +48,4 @@ deploy:
on:
repo: gcla/termshark
all_branches: true
condition: "$TRAVIS_OS_NAME = linux && $TRAVIS_GO_VERSION = 1.17.x"
condition: "$TRAVIS_OS_NAME = linux && $TRAVIS_GO_VERSION = 1.18.x"

0 comments on commit b92b83c

Please sign in to comment.