We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fbe319 commit e140a83Copy full SHA for e140a83
1 file changed
.github/workflows/curl.yml
@@ -0,0 +1,40 @@
1
+name: CURL Test
2
+
3
+on:
4
+ push:
5
+ branches: [ '*' ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - uses: actions/checkout@master
16
+ - name: autogen
17
+ run: ./autogen.sh
18
+ - name: configure
19
+ run: ./configure --enable-all
20
+ - name: make
21
+ run: make
22
+ - name: install
23
+ run: sudo make install
24
25
+ with:
26
+ repository: curl/curl
27
+ path: curl
28
+ - name: curl buildconf
29
+ working-directory: ./curl
30
+ run: ./buildconf
31
+ - name: curl configure
32
33
+ run: ./configure --with-wolfssl
34
+ - name: curl make
35
36
37
+ - name: curl unit tests
38
39
+ run: make test
40
0 commit comments