We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33f448c commit b327746Copy full SHA for b327746
.github/workflows/build.yaml
@@ -33,10 +33,16 @@ jobs:
33
BuildImage:
34
runs-on: ubuntu-20.04
35
steps:
36
- - name: Set up Go
37
- uses: actions/setup-go@v3
38
- with:
39
- go-version: 1.20.x
40
- uses: actions/[email protected]
41
- name: Image
42
run: make build-image
+
+ RunE2E:
+ runs-on: ubuntu-20.04
+ steps:
43
+ - uses: actions/[email protected]
44
+ - name: Run e2e
45
+ run: |
46
+ sudo curl -L https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64 -o /usr/local/bin/docker-compose
47
+ sudo chmod u+x /usr/local/bin/docker-compose
48
+ make run-e2e
Makefile
@@ -13,3 +13,5 @@ hd:
13
init-env: hd
14
hd i cli/cli
15
gh extension install linuxsuren/gh-dev
16
+run-e2e:
17
+ cd e2e && ./start.sh
0 commit comments