diff options
author | Copybara-Service <copybara-worker@google.com> | 2021-11-24 01:23:00 (GMT) |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2021-11-24 01:23:00 (GMT) |
commit | e2f3978937c0244508135f126e2617a7734a68be (patch) | |
tree | e2ece49d700e1061542eb9d7662d6131e0f4e6eb | |
parent | 3e0e32ba300ce8afe695ad3ba7e81b21b7cf237a (diff) | |
parent | 24898650b1cdefb5b4def72a3ff213c24aaf2b44 (diff) | |
download | googletest-e2f3978937c0244508135f126e2617a7734a68be.zip googletest-e2f3978937c0244508135f126e2617a7734a68be.tar.gz googletest-e2f3978937c0244508135f126e2617a7734a68be.tar.bz2 |
Merge pull request #3620 from hzeller:add-simple-ci
PiperOrigin-RevId: 411929458
Change-Id: Id102172091fb708c0c8252da6d3570771fc15dba
-rw-r--r-- | .github/workflows/gtest-ci.yml | 40 |
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 //... |