set default values for configuration parameters #98
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: | |
unittest: | |
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 | |
integration-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: supply with s3 access keys | |
run: | | |
echo "ydbcp" > access_key | |
echo "password" > secret_key | |
- name: docker compose up | |
run: | | |
docker compose up --build -d | |
- name: run make_backup tests | |
run: docker exec local-ydbcp sh -c './make_backup' | |
- name: docker compose down | |
run: | | |
docker compose down | |
- name: docker compose up | |
run: | | |
docker compose up -d | |
- name: run list_entities test | |
run: docker exec local-ydbcp sh -c './list_entities' | |
- name: docker compose down | |
run: | | |
docker compose down |