-
Notifications
You must be signed in to change notification settings - Fork 631
Open
Labels
area/healthInvolves general matters of project configuration, health, maintenance, and similar concernsInvolves general matters of project configuration, health, maintenance, and similar concerns
Description
The CI workflow file ci.yml contains the following in the build job:
- name: Install clang-format (Linux)
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y clang-format
- name: Install clang-format (macOS)
if: runner.os == 'macOS'
run: |
brew install clang-formatHowever,
- The job never runs
clang-format– it only installs it - The only other job it runs is
bazel test src/..., and I can't find evidence in the WORKSPACE or BUILD files thatclang-formatis invoked from them
It's possible clang-format is needed in a dependency, but just in case this was a left-over in the CI file from something else, I wanted to flag it.
Metadata
Metadata
Assignees
Labels
area/healthInvolves general matters of project configuration, health, maintenance, and similar concernsInvolves general matters of project configuration, health, maintenance, and similar concerns