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 195989d commit fad3824Copy full SHA for fad3824
.github/workflows/c-cpp.yml
@@ -13,11 +13,15 @@ jobs:
13
steps:
14
- uses: actions/checkout@v4
15
16
- # Ensure configure is executable and then run it
17
- - name: Ensure configure is executable
+ # Check if configure script is present
+ - name: List files
18
+ run: ls -la
19
+
20
+ # Ensure the configure script is executable and run it
21
+ - name: Make configure executable
22
run: chmod +x ./configure
23
- - name: configure
24
+ - name: Run configure
25
run: ./configure
26
27
- name: make
0 commit comments