Do runtime differently #75
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: Lint and Format | |
on: [pull_request, push] | |
jobs: | |
lint_python: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: psf/black@stable | |
wpiformat: | |
name: "wpiformat" | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Fetch main | |
run: | | |
git branch -f main origin/main | |
if: github.ref != 'refs/heads/main' | |
- uses: actions/setup-python@v5 | |
with: { python-version: '3.11' } | |
- name: Install clang-format | |
run: | | |
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - | |
sudo sh -c "echo 'deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-14 main' >> /etc/apt/sources.list.d/proposed-repositories.list" | |
sudo apt-get update -q | |
sudo apt-get install -y clang-format-14 | |
- run: bazel run --noenable_bzlmod @rules_wpiformat//wpiformat -- -f .. | |
working-directory: tests | |
if: github.ref != 'refs/heads/main' | |
- name: Check Output | |
run: git --no-pager diff --exit-code HEAD | |
buildifier: | |
name: "buildifier" | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Set up Go 1.20.x | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.20.x | |
cache: false | |
id: go | |
- uses: actions/checkout@v4 | |
- name: Install Buildifier | |
run: | | |
cd $(mktemp -d) | |
GO111MODULE=on go install github.com/bazelbuild/buildtools/buildifier@latest | |
- name: Run buildifier | |
run: buildifier -warnings all --lint=fix -r . | |
- name: Check Output | |
run: git --no-pager diff --exit-code HEAD | |
- name: Generate diff | |
run: git diff HEAD > buildifier-fixes.patch | |
if: ${{ failure() }} | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: buildifier fixes | |
path: buildifier-fixes.patch | |
if: ${{ failure() }} |