Bump google.golang.org/protobuf from 1.34.2 to 1.35.1 #1077
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: Go | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Start Redis | |
uses: supercharge/[email protected] | |
with: | |
redis-version: 6 | |
- name: MongoDB in GitHub Actions | |
uses: supercharge/[email protected] | |
with: | |
mongodb-version: 4.4 | |
mongodb-replica-set: test-rs | |
mongodb-port: 27017 | |
- name: check mongo | |
run: docker exec -t mongodb mongo localhost:27017 --eval "db.test.find()" | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ^1.19 | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
working-directory: /home/runner/work/go-pttbbsweb/go-pttbbsweb | |
args: --verbose --config /home/runner/work/go-pttbbsweb/go-pttbbsweb/.golangci.yaml | |
- name: Build | |
run: make | |
- name: TestQueueCommentDBCS | |
run: go test -v ./... -run TestQueueCommentDBCS -tags queue | |
- name: Testing | |
run: make test | |
env: | |
TAGS: noqueue | |
- name: Upload coverage report | |
uses: codecov/codecov-action@v4 |