Skip to content

Fix #1: add a working x86_64-linux-native toolchain. #11

Fix #1: add a working x86_64-linux-native toolchain.

Fix #1: add a working x86_64-linux-native toolchain. #11

Workflow file for this run

name: Linter tests
on:
push:
branches:
- "*"
- "!sapling-pr-archive-*"
jobs:
buildifier:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Setup Go environment
uses: actions/[email protected]
- name: Install buildifier
run: go install github.com/bazelbuild/buildtools/buildifier@latest
- name: Checkout code
uses: actions/checkout@v2
- name: Run buildifier
run: |
buildifier -r -mode check .
find . -name BUCK -exec buildifier -mode check {} \;