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 6d32bf3 commit acf0284Copy full SHA for acf0284
.github/workflows/c-cpp.yml
@@ -1,23 +1,23 @@
1
name: C/C++ CI
2
3
-on:
4
- push:
5
- branches: [ "main" ]
6
- pull_request:
7
+on: [push, pull_request]
8
9
jobs:
10
build:
11
-
12
runs-on: ubuntu-latest
13
14
steps:
15
- - uses: actions/checkout@v4
16
- - name: configure
+ - name: Checkout repository
+ uses: actions/checkout@v4
+
+ - name: Generate configure script
+ run: autoreconf -i
+ - name: Set execute permissions for configure
17
+ run: chmod +x ./configure
18
19
+ - name: Configure the project
20
run: ./configure
- - name: make
21
22
+ - name: Build the project
23
run: make
- - name: make check
- run: make check
- - name: make distcheck
- run: make distcheck
0 commit comments