61fd47e285f5b49f2e913b267da5742948dcf59e
[platform/upstream/gtest.git] / .github / workflows / gtest-ci.yml
1 name: ci
2
3 on:
4   push:
5   pull_request:
6
7 jobs:
8   Linux:
9     runs-on: ubuntu-latest
10     steps:
11
12     - uses: actions/checkout@v2
13       with:
14         fetch-depth: 0
15
16     - name: Tests
17       run: bazel test --test_output=errors //...
18
19   MacOs:
20     runs-on: macos-latest
21     steps:
22
23     - uses: actions/checkout@v2
24       with:
25         fetch-depth: 0
26
27     - name: Tests
28       run: bazel test --test_output=errors //...
29
30
31   Windows:
32     runs-on: windows-latest
33     steps:
34
35     - uses: actions/checkout@v2
36       with:
37         fetch-depth: 0
38
39     - name: Tests
40       run: bazel test --test_output=errors //...