feat: make stage copiable and allow to customize prefix of db #198
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: Build & Test | |
on: | |
pull_request: | |
paths: | |
- "**.go" | |
push: | |
branches: | |
- main | |
- "release/*" | |
paths: | |
- "**.go" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Run test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: 1.22 | |
- name: Install openssl | |
run: sudo apt-get install libssl-dev | |
- uses: actions/checkout@v3 | |
- uses: technote-space/get-diff-action@v4 | |
with: | |
PATTERNS: | | |
**/**.go | |
go.mod | |
go.sum | |
- name: build | |
run: | | |
make build | |
- name: test | |
if: env.GIT_DIFF | |
run: | | |
go test ./... -mod=readonly -timeout 12m | |
env: | |
GIT_DIFF: ${{ env.GIT_DIFF }} |