Skip to content

Improve TakeBackupOperation handler #20

Improve TakeBackupOperation handler

Improve TakeBackupOperation handler #20

Workflow file for this run

name: Run YDBCP tests
on:
pull_request:
branches: [main]
types: [opened, synchronize, reopened]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Install proto plugins
run: |
go install google.golang.org/protobuf/cmd/[email protected]
go install google.golang.org/grpc/cmd/[email protected]
- name: Compile protos
run: make
- name: Build
run: |
go mod tidy
go build -v ./...
- name: Test
uses: robherley/[email protected]
- uses: austenstone/[email protected]
id: job-summary
with:
create-pdf: false
- name: Comment on PR
uses: peter-evans/create-or-update-comment@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
repository: ${{ github.repository }}
issue-number: ${{ github.event.pull_request.number }}
body: ${{ steps.job-summary.outputs.job-summary }}