Skip to content

Commit acf0284

Browse files
Update c-cpp.yml
1 parent 6d32bf3 commit acf0284

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

.github/workflows/c-cpp.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
name: C/C++ CI
22

3-
on:
4-
push:
5-
branches: [ "main" ]
6-
pull_request:
7-
branches: [ "main" ]
3+
on: [push, pull_request]
84

95
jobs:
106
build:
11-
127
runs-on: ubuntu-latest
138

149
steps:
15-
- uses: actions/checkout@v4
16-
- name: configure
10+
- name: Checkout repository
11+
uses: actions/checkout@v4
12+
13+
- name: Generate configure script
14+
run: autoreconf -i
15+
16+
- name: Set execute permissions for configure
17+
run: chmod +x ./configure
18+
19+
- name: Configure the project
1720
run: ./configure
18-
- name: make
21+
22+
- name: Build the project
1923
run: make
20-
- name: make check
21-
run: make check
22-
- name: make distcheck
23-
run: make distcheck

0 commit comments

Comments
 (0)