diff --git a/.github/workflows/bazel.yml b/.github/workflows/bazel.yml new file mode 100644 index 0000000..e5a16c6 --- /dev/null +++ b/.github/workflows/bazel.yml @@ -0,0 +1,28 @@ +name: Bazel + +on: + pull_request: + branches: [ main ] + +jobs: + macos_build: + + runs-on: macos-11.0 + + steps: + - uses: actions/checkout@v2 + + - name: Output the Bazel Info + shell: bash + run: | + bazelisk info + + - name: Execute Tests + shell: bash + run: | + bazelisk test //... + + - name: Build Anything Not Tested + shell: bash + run: | + bazelisk build //...