mirror of
https://github.com/google/googletest.git
synced 2025-04-07 06:25:01 +00:00
Start a simple github actions CI
Running on major platforms. Signed-off-by: Henner Zeller <h.zeller@acm.org>
This commit is contained in:
parent
16f637fbf4
commit
24898650b1
1 changed files with 40 additions and 0 deletions
40
.github/workflows/gtest-ci.yml
vendored
Normal file
40
.github/workflows/gtest-ci.yml
vendored
Normal 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 //...
|
Loading…
Add table
Reference in a new issue