release first version for all module #2
Workflow file for this run
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: Goredis Pull Request Check | |
on: | |
pull_request: | |
paths: | |
- 'goredis/**' | |
push: | |
paths: | |
- 'goredis/**' | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: 1.19 | |
- name: Build | |
run: cd goredis && go build -v ./... | |
- name: Test | |
run: cd goredis && go test -v -gcflags=all=-l ./... | |