We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 365fae8 commit cb91221Copy full SHA for cb91221
1 file changed
.github/workflows/curl.yml
@@ -4,7 +4,7 @@ on:
4
workflow_call:
5
6
jobs:
7
- build:
+ build-and-test:
8
runs-on: ubuntu-latest
9
# This should be a safe limit for the tests to run.
10
timeout-minutes: 14
@@ -22,10 +22,14 @@ jobs:
22
configure: --enable-curl
23
install: true
24
25
- - name: Build and test curl
+ - name: Build curl
26
uses: wolfSSL/actions-build-autotools-project@v1
27
with:
28
repository: curl/curl
29
path: curl
30
configure: --with-wolfssl=$GITHUB_WORKSPACE/build-dir
31
- check: true
+ check: false
32
+
33
+ - name: Test curl
34
+ working-directory: curl
35
+ run: make -j test-ci
0 commit comments