Merge branch 'google:main' into master

This commit is contained in:
Anthony Graca 2021-11-24 17:55:57 -08:00 committed by GitHub
commit 6dd7f98a34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

40
.github/workflows/gtest-ci.yml vendored Normal file
View File

@ -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 //...