2021-10-21 06:18:49 +08:00
|
|
|
name: ci
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
Linux:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Tests
|
2022-08-20 02:10:56 +08:00
|
|
|
run: bazel test --features=external_include_paths --test_output=errors ...
|
2021-10-21 06:18:49 +08:00
|
|
|
|
|
|
|
MacOs:
|
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Tests
|
2022-08-20 02:10:56 +08:00
|
|
|
run: bazel test --features=external_include_paths --test_output=errors ...
|
2021-10-21 06:18:49 +08:00
|
|
|
|
|
|
|
|
|
|
|
Windows:
|
|
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Tests
|
2022-08-20 02:10:56 +08:00
|
|
|
run: bazel test --features=external_include_paths --test_output=errors ...
|