gtest-ci.yml 599 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. name: ci
  2. on:
  3. push:
  4. pull_request:
  5. jobs:
  6. Linux:
  7. runs-on: ubuntu-latest
  8. steps:
  9. - uses: actions/checkout@v2
  10. with:
  11. fetch-depth: 0
  12. - name: Tests
  13. run: bazel test --test_output=errors //...
  14. MacOs:
  15. runs-on: macos-latest
  16. steps:
  17. - uses: actions/checkout@v2
  18. with:
  19. fetch-depth: 0
  20. - name: Tests
  21. run: bazel test --test_output=errors //...
  22. Windows:
  23. runs-on: windows-latest
  24. steps:
  25. - uses: actions/checkout@v2
  26. with:
  27. fetch-depth: 0
  28. - name: Tests
  29. run: bazel test --test_output=errors //...