add bazel config file #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Bazel files check | |
permissions: read-all | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- '*.bazel' | |
- '*.bzl' | |
pull_request: | |
paths: | |
- '*.bazel' | |
- '*.bzl' | |
jobs: | |
check-formatting: | |
name: Check bazel files | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup buildifier | |
uses: jbajic/setup-buildifier@v1 | |
with: | |
buildifier-version: '7.3.1' | |
- name: Run buildifier | |
run: | | |
buildifier -mode check -r . |