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.
2 parents 3862647 + 071730a commit cc17bdcCopy full SHA for cc17bdc
.github/workflows/compilation.yml
@@ -41,9 +41,13 @@ jobs:
41
- name: Compile examples
42
run: |
43
cd examples
44
- # For now just box and logo example is compiling
+ # For now just box, logo and nehe examples are compiling
45
cd box && make clean all && cd ..
46
cd logo && make clean all && cd ..
47
+ cd nehe/lesson02 && make clean all && cd ../..
48
+ cd nehe/lesson03 && make clean all && cd ../..
49
+ cd nehe/lesson04 && make clean all && cd ../..
50
+ cd nehe/lesson05 && make clean all && cd ../..
51
52
53
- name: Upload artifacts
0 commit comments