aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorHenner Zeller <h.zeller@acm.org>2021-10-20 15:18:49 -0700
committerHenner Zeller <h.zeller@acm.org>2021-10-20 15:26:11 -0700
commit24898650b1cdefb5b4def72a3ff213c24aaf2b44 (patch)
treead3ce5449ca83d6e282186fd03466035d0b8e4a6 /.github
parent16f637fbf4ffc3f7a01fa4eceb7906634565242f (diff)
downloadgoogletest-24898650b1cdefb5b4def72a3ff213c24aaf2b44.zip
googletest-24898650b1cdefb5b4def72a3ff213c24aaf2b44.tar.gz
googletest-24898650b1cdefb5b4def72a3ff213c24aaf2b44.tar.bz2
Start a simple github actions CI
Running on major platforms. Signed-off-by: Henner Zeller <h.zeller@acm.org>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/gtest-ci.yml40
1 files changed, 40 insertions, 0 deletions
diff --git a/.github/workflows/gtest-ci.yml b/.github/workflows/gtest-ci.yml
new file mode 100644
index 0000000..61fd47e
--- /dev/null
+++ b/.github/workflows/gtest-ci.yml
@@ -0,0 +1,40 @@
+name: ci
+
+on:
+ push:
+ pull_request:
+
+jobs:
+ Linux:
+ runs-on: ubuntu-latest
+ steps:
+
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+
+ - name: Tests
+ run: bazel test --test_output=errors //...
+
+ MacOs:
+ runs-on: macos-latest
+ steps:
+
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+
+ - name: Tests
+ run: bazel test --test_output=errors //...
+
+
+ Windows:
+ runs-on: windows-latest
+ steps:
+
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0
+
+ - name: Tests
+ run: bazel test --test_output=errors //...