Skip to content

ci: try to fix CI failures #74

ci: try to fix CI failures

ci: try to fix CI failures #74

Workflow file for this run

name: Bazel Build
on:
push:
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup bazel
# FIXME: Bazel 7.0+ support.
run: |
rm -rf /usr/local/bin/bazel
wget https://github.com/bazelbuild/bazel/releases/download/6.5.0/bazel-6.5.0-linux-x86_64 -O /usr/local/bin/bazel
chmod +x /usr/local/bin/bazel
- 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 ...