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 2a6df02 commit 8cddc3fCopy full SHA for 8cddc3f
.github/workflows/c-cpp.yml
@@ -28,21 +28,17 @@ jobs:
28
brew install make
29
30
- name: Build with Make
31
+ working-directory: ./mas
32
run: make
33
34
- name: Test executable exists
35
36
run: |
- if [ "${{ runner.os }}" == "Windows" ]; then
- if [ ! -f "mas.exe" ]; then
37
- echo "Build failed: mas.exe not found"
38
- exit 1
39
- fi
40
- else
41
42
43
44
+ if [ ! -f "mas.exe" ]; then
+ echo "Build failed: mas.exe not found"
+ exit 1
45
fi
46
47
- name: Clean build artifacts
+ working-directory: ./maw
48
run: make clean
0 commit comments