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 cfeab99 commit 66d2a56Copy full SHA for 66d2a56
.github/workflows/ci.yml
@@ -1,4 +1,4 @@
1
-name: C++ CI and Codecov for Multiple Projects
+name: CI
2
3
on:
4
push:
@@ -34,7 +34,10 @@ jobs:
34
cd data-structures/${{ matrix.project }}
35
# Run the build script for the project
36
./build.sh
37
- ./bin/test_${{ matrix.project | toLower }}
+ # Convert the project name to lowercase
38
+ PROJECT_LOWER=$(echo "${{ matrix.project }}" | tr '[:upper:]' '[:lower:]')
39
+ ./bin/test_$PROJECT_LOWER
40
+ ./clean.sh
41
42
# Step 4: Upload coverage to Codecov
43
- name: Upload coverage to Codecov
0 commit comments