aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/gtest-ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/gtest-ci.yml')
-rw-r--r--.github/workflows/gtest-ci.yml43
1 files changed, 43 insertions, 0 deletions
diff --git a/.github/workflows/gtest-ci.yml b/.github/workflows/gtest-ci.yml
new file mode 100644
index 00000000..03a8cc5e
--- /dev/null
+++ b/.github/workflows/gtest-ci.yml
@@ -0,0 +1,43 @@
+name: ci
+
+on:
+ push:
+ pull_request:
+
+env:
+ BAZEL_CXXOPTS: -std=c++14
+
+jobs:
+ Linux:
+ runs-on: ubuntu-latest
+ steps:
+
+ - uses: actions/checkout@v3
+ with:
+ fetch-depth: 0
+
+ - name: Tests
+ run: bazel test --cxxopt=-std=c++14 --features=external_include_paths --test_output=errors ...
+
+ macOS:
+ runs-on: macos-latest
+ steps:
+
+ - uses: actions/checkout@v3
+ with:
+ fetch-depth: 0
+
+ - name: Tests
+ run: bazel test --cxxopt=-std=c++14 --features=external_include_paths --test_output=errors ...
+
+
+ Windows:
+ runs-on: windows-latest
+ steps:
+
+ - uses: actions/checkout@v3
+ with:
+ fetch-depth: 0
+
+ - name: Tests
+ run: bazel test --cxxopt=/std:c++14 --features=external_include_paths --test_output=errors ...