mirror of
https://github.com/google/googletest.git
synced 2025-01-15 00:47:54 +08:00
24898650b1
Running on major platforms. Signed-off-by: Henner Zeller <h.zeller@acm.org>
41 lines
599 B
YAML
41 lines
599 B
YAML
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 //...
|