File tree Expand file tree Collapse file tree 4 files changed +26
-18
lines changed Expand file tree Collapse file tree 4 files changed +26
-18
lines changed Load Diff This file was deleted.
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ pull_request :
8
+ branches :
9
+ - main
10
+
11
+ jobs :
12
+ build :
13
+ runs-on : ubuntu-latest
14
+
15
+ steps :
16
+ - name : Checkout Repository
17
+ uses : actions/checkout@v4
18
+
19
+ - name : Build Docker Image
20
+ run : docker build -t rgov/sqlite_protobuf_build -f .github/docker/Dockerfile .
21
+
22
+ - name : Run CI in Container
23
+ run : |
24
+ docker run --rm -v ${{ github.workspace }}:/workspace -w /workspace rgov/sqlite_protobuf_build \
25
+ bash -c "mkdir build && cd build && cmake -G Ninja .. && cmake --build . && ctest --output-on-failure"
Original file line number Diff line number Diff line change 1
- [ ![ CircleCI ] ( https://circleci .com/gh/ rgov/sqlite_protobuf. svg?style=svg )] ( https://circleci .com/gh/ rgov/sqlite_protobuf )
1
+ [ ![ Build ] ( https://github .com/rgov/sqlite_protobuf/actions/workflows/ci.yml/badge. svg )] ( https://github .com/rgov/sqlite_protobuf/actions/workflows/ci.yml )
2
2
3
3
# Protobuf Extension for SQLite
4
4
You can’t perform that action at this time.
0 commit comments