Skip to content

Commit 3fef823

Browse files
committed
fix(ci) Enable test execution on push
1 parent 43014a4 commit 3fef823

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/tap_integration_test.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
name: Test TAP Protocol
2-
1+
name: Test GraphTally Protocol
32
on:
43
push:
5-
branches: [main]
4+
# branches: [main]
65
pull_request:
76
branches: [main]
87

@@ -16,11 +15,16 @@ jobs:
1615
- name: Set up Docker
1716
uses: docker/setup-buildx-action@v2
1817

18+
- name: Set up Docker cache
19+
uses: docker/setup-buildx-action@v2
20+
with:
21+
install: true
22+
1923
- name: Run make setup
2024
run: make setup
2125

22-
- name: Run make test-local
23-
run: make test-local
26+
- name: Run tests
27+
run: make rav_tests
2428

2529
- name: Tear down containers
2630
if: always()

0 commit comments

Comments
 (0)