We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e140a83 commit f30364aCopy full SHA for f30364a
2 files changed
.github/workflows/curl.yml
@@ -1,10 +1,8 @@
1
-name: CURL Test
+name: curl Test
2
3
on:
4
push:
5
- branches: [ '*' ]
6
- pull_request:
7
+ workflow_call:
8
9
jobs:
10
build:
@@ -25,6 +23,9 @@ jobs:
25
23
with:
26
24
repository: curl/curl
27
path: curl
+ - name: Install test dependency
+ working-directory: ./curl
28
+ run: sudo apt-get install nghttp2
29
- name: curl buildconf
30
working-directory: ./curl
31
run: ./buildconf
.github/workflows/main.yml
@@ -32,6 +32,8 @@ jobs:
32
uses: ./.github/workflows/zephyr.yml
33
hitch:
34
uses: ./.github/workflows/hitch.yml
35
+ curl:
36
+ uses: ./.github/workflows/curl.yml
37
# TODO: Currently this test fails. Enable it once it becomes passing.
38
# haproxy:
39
# uses: ./.github/workflows/haproxy.yml
0 commit comments