Skip to content

chore: suppress a warning w/ bazel #67

chore: suppress a warning w/ bazel

chore: suppress a warning w/ bazel #67

Workflow file for this run

name: Bazel Build
on:
push:
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Build
# Build your program with clang
working-directory: ${{github.workspace}}
run: bazel build ...
- name: Test
# Build and Execute tests
working-directory: ${{github.workspace}}
run: bazel test --test_output=errors ...