fix: discovery not effect because of additional properties rewrite to etcd #170
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: APISXI-Seed E2E Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
run-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: setup go | |
uses: actions/[email protected] | |
with: | |
go-version: "1.17" | |
- name: startup apisix, nacos and apisix-seed | |
run: | | |
docker-compose -f ci/docker-compose.yml up -d | |
sleep 5 | |
docker logs apisix-seed | |
- name: install ginkgo cli | |
run: go install github.com/onsi/ginkgo/v2/[email protected] | |
- name: run tests | |
working-directory: ./test/e2e | |
run: ginkgo -r | |