Skip to content

Commit ac51854

Browse files
authored
Create c-cpp2.yml
1 parent ae1f45f commit ac51854

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/c-cpp2.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: C/C++ CI
2+
3+
on:
4+
push:
5+
branches: [ "update-copyright-and-bug-fixes" ]
6+
pull_request:
7+
branches: [ "update-copyright-and-bug-fixes" ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
- name: configure
17+
run: ./configure
18+
- name: make
19+
run: make
20+
- name: make check
21+
run: make check
22+
- name: make distcheck
23+
run: make distcheck

0 commit comments

Comments
 (0)