Skip to content

Commit

Permalink
invalid workflow corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
KandelN authored Feb 10, 2025
1 parent 299d397 commit 37f01d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y build-essential

- name: Debug: List C files before compiling
- name: List C files before compiling
run: find . -type f -name "*.c" ! -path "*/screenshots/*"

- name: Find and Compile C Code
run: |
find . -type f -name "*.c" ! -path "*/screenshots/*" -exec sh -c 'gcc -o "${1%.c}.out" "$1" -lm' sh {} \;
- name: List Compiled Files
run: find . -type f -name "*.out"g
run: find . -type f -name "*.out"g

0 comments on commit 37f01d6

Please sign in to comment.