Skip to content

Format all .java files #301

Format all .java files

Format all .java files #301

Workflow file for this run

name: CI
on:
push: {}
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v1
- name: Build
run: |
bazel build //...
- name: Test
run: |
bazel test //...
lint:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v1
- name: Lint
run: |
bazel run //infra:lint -- "$(pwd)"