Skip to content

Commit a653580

Browse files
authored
Merge pull request #174 from weaveworks/173-e2e-ci
ci: Run e2e test manually
2 parents b257662 + 3057618 commit a653580

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/e2e.yaml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: e2e
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
e2e:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout
11+
uses: actions/[email protected]
12+
- name: Setup
13+
uses: actions/[email protected]
14+
with:
15+
go-version: 1.20.x
16+
- name: Prepare
17+
run: |
18+
echo "machine github.com login ${{ github.actor }} password ${{ secrets.BUILD_BOT_TOKEN }}" > ~/.netrc
19+
- name: Run E2E tests
20+
run: make e2e

0 commit comments

Comments
 (0)