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 06d9d06 commit 9dcf54bCopy full SHA for 9dcf54b
.github/workflows/dotnet.yml
@@ -20,7 +20,7 @@ jobs:
20
echo "C:\tools\mingw64\bin" >> $env:GITHUB_PATH
21
- name: Build C++ Project
22
run: |
23
- $cppFiles = Get-ChildItem -Path ./src -Filter *.cpp | ForEach-Object { $_.FullName }
+ $cppFiles = Get-ChildItem -Path ../../../src -Filter *.cs | ForEach-Object { $_.FullName }
24
g++ -o output.exe -Wall -Wextra -O2 $cppFiles
25
- name: Run Executable
26
run: ./output.exe
0 commit comments