We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d23dc94 commit 98df4deCopy full SHA for 98df4de
1 file changed
.github/workflows/c-cpp.yml
@@ -1,35 +1,15 @@
1
-name: C/C++ CI
2
-
3
-on:
4
- push:
5
- branches: [ "main" ]
6
- pull_request:
7
8
9
-jobs:
10
- build:
11
- runs-on: ubuntu-latest
12
13
steps:
14
- name: Checkout code
15
uses: actions/checkout@v4
16
17
- name: Run configure
18
- # Fixed the typo here: "dynamic" instead of "dynami"
19
- working-directory: ./dynamic-array
+ # Removed the working-directory line so it stays in the root
20
run: |
21
- # Ensure the script is executable just in case
22
chmod +x ./configure
23
./configure
24
25
- name: make
26
27
run: make
28
29
- name: make check
30
31
run: make check
32
33
- - name: make distcheck
34
35
- run: make distcheck
0 commit comments