File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : build
2
+
3
+ on : [push]
4
+
5
+ jobs :
6
+ build :
7
+
8
+ runs-on : ubuntu-latest
9
+
10
+ steps :
11
+ - uses : actions/checkout@v1
12
+ - name : Submodule SQLiteCpp
13
+ run : |
14
+ git submodule init
15
+ git submodule update
16
+ - name : CMake generate & build
17
+ run : |
18
+ mkdir -p build
19
+ cd build
20
+ cmake ..
21
+ cmake --build .
Original file line number Diff line number Diff line change 1
1
SQLiteC++
2
2
---------
3
3
4
+ [ ![ release] ( https://img.shields.io/github/release/SRombauts/SQLiteCpp.svg )] ( https://github.com/SRombauts/SQLiteCpp/releases )
5
+ [ ![ license] ( https://img.shields.io/badge/license-MIT-blue.svg )] ( https://github.com/SRombauts/SQLiteCpp/blob/master/LICENSE.txt )
6
+ [ ![ GitHub Actions Build status] ( https://github.com/SRombauts/SQLiteCpp_Example/workflows/build/badge.svg )] ( https://github.com/SRombauts/SQLiteCpp_Example/actions " GitHhub Actions Build status ")
7
+
4
8
[ SQLiteC++ (SQLiteCpp)] ( https://github.com/SRombauts/SQLiteCpp ) is a smart and easy to use C++ SQLite3 wrapper.
5
9
6
10
[ See SQLiteC++ website on GitHub] ( http://srombauts.github.com/SQLiteCpp ) .
You can’t perform that action at this time.
0 commit comments