Bump github.com/spf13/viper from 1.16.0 to 1.17.0 #190
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: e2e tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
e2e: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install kind with registry | |
uses: bakito/kind-with-registry-action@main | |
- name: Build image | |
run: ./testdata/e2e/bin/build-image.sh | |
- name: Install Helm Chart | |
run: ./testdata/e2e/bin/install-chart.sh | |
- name: Wait for sync to finish | |
run: ./testdata/e2e/bin/wait-for-sync.sh | |
- name: Show origin Logs | |
run: ./testdata/e2e/bin/show-origin-logs.sh | |
- name: Show Replica Logs | |
run: ./testdata/e2e/bin/show-replica-logs.sh | |
- name: Show Sync Logs | |
run: ./testdata/e2e/bin/show-sync-logs.sh |