Skip to content

Commit 72b618a

Browse files
authored
Refactor GitHub Actions workflow for C/C++
1 parent a1f28dc commit 72b618a

1 file changed

Lines changed: 4 additions & 8 deletions

File tree

.github/workflows/c-cpp.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,10 @@ jobs:
1414
- name: Checkout code
1515
uses: actions/checkout@v4
1616

17-
- name: Run configure
18-
# Removed the working-directory line so it stays in the root
19-
run: |
20-
chmod +x ./configure
21-
./configure
22-
23-
- name: make
17+
- name: Compile (make)
2418
run: make
2519

26-
- name: make check
20+
- name: Run Tests
21+
# Only keep this if your Makefile actually has a 'check' target
2722
run: make check
23+

0 commit comments

Comments
 (0)