feat(ydbcp): add running state for operations and backups #139
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: Run YDBCP tests | |
on: | |
pull_request: | |
branches: [main] | |
types: [opened, synchronize, reopened] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
outputs: | |
job-summary: ${{ steps.job-summary.outputs.job-summary }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Cache go modules | |
uses: magnetikonline/action-golang-cache@v5 | |
with: | |
go-version-file: go.mod | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v3 | |
- 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 proto | |
- name: Build | |
run: | | |
go mod tidy | |
go build -v ./... | |
- name: Test | |
uses: robherley/[email protected] | |
with: | |
testArguments: './... -race --timeout=10s' | |
- name: Generate summary | |
uses: austenstone/[email protected] | |
id: job-summary | |
with: | |
create-pdf: false | |
comment-pr: | |
runs-on: ubuntu-latest | |
needs: test | |
steps: | |
- 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: ${{ needs.test.outputs.job-summary }} |