-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (35 loc) · 873 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Test
run-name: "CI run for @${{ github.actor }}, reason: {{ github.event-name }}"
on:
push:
branches:
- main
pull_request:
jobs:
test_linux:
name: Test Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
bazel version
bazel mod graph
bazel test -c dbg -s --test_output=all //tests:test
shell: bash
test_mac:
name: Test MacOS
runs-on: macos-12
steps:
- uses: actions/checkout@v3
- run: |
bazel version
bazel mod graph
bazel test -c dbg -s --test_output=all //tests:test
shell: bash
clang_format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: RafikFarhad/clang-format-github-action@v3
with:
sources: "src/**/*.h, src/**/*.cpp, tests/**/*.cpp"