Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
liuyuecai committed Mar 11, 2024
1 parent b64135a commit 439d55d
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/pika.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@ jobs:
with:
go-version: 1.19

- name: Run Go E2E Tests222
working-directory: ${{ github.workspace }}/build
run: |
cd tests/integration/
chmod +x integrate_test.sh
sh integrate_test.sh
- name: Cache dependencies
uses: actions/cache@v3
id: cache
Expand Down Expand Up @@ -99,9 +106,9 @@ jobs:
- name: Run Go E2E Tests222
working-directory: ${{ github.workspace }}/build
run: |
cd ../tools/pika_keys_analysis/
go test -v ./...
cd ../../tests/integration/
# cd ../tools/pika_keys_analysis/
# go test -v ./...
cd tests/integration/
chmod +x integrate_test.sh
sh integrate_test.sh

Expand Down Expand Up @@ -180,6 +187,12 @@ jobs:
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Run Go E2E Tests222
working-directory: ${{ github.workspace }}/build
run: |
cd tests/integration/
chmod +x integrate_test.sh
sh integrate_test.sh
- name: Install Deps
run: |
Expand Down

0 comments on commit 439d55d

Please sign in to comment.