We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6366e7d + b6e122e commit 474416cCopy full SHA for 474416c
2 files changed
.github/workflows/ccpp.yml
@@ -1,4 +1,4 @@
1
-name: C/C++ CI
+name: build_all
2
3
on:
4
push:
@@ -13,5 +13,7 @@ jobs:
13
14
steps:
15
- uses: actions/checkout@v2
16
- - name: build_all
17
- run: ./build_all.sh
+ - name: build_all_clang
+ run: ./build_all_clang.sh
18
+ - name: build_all_gcc
19
+ run: ./build_all_gcc.sh
README.md
@@ -3,6 +3,8 @@
Code samples from the book *Professional Programming Tools for C and C++* by Anton Gerdelan and Katja Žibrek.
The book information page is at [http://antongerdelan.net/pro_programming_tools_book/](http://antongerdelan.net/pro_programming_tools_book/).
5
6
+
7
+
8
## How to use this Repository
9
10
* This repository is split into folders, one for each code example.
0 commit comments