We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ecbbb1 commit a6b841dCopy full SHA for a6b841d
.github/workflows/cmake-single-platform.yml
@@ -1 +1,34 @@
1
+name: UTF-8 String C++ CI
2
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
+
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Checkout repository
15
+ uses: actions/checkout@v3
16
17
+ - name: Update System
18
+ run: sudo apt -y update
19
20
+ - name: Configure CMake
21
+ run: |
22
+ mkdir build
23
+ cd build
24
+ cmake -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ ..
25
26
+ - name: Build App
27
28
29
+ cmake --build .
30
31
+ - name: Running Tests
32
33
+ cd build/tests
34
+ ./Tests
0 commit comments