Optimize memory usage #386
Workflow file for this run
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
# Copyright 2023, Gerwin Klein, Régis Décamps, Steve Rowe | |
# SPDX-License-Identifier: BSD-3-Clause | |
name: Code Style | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
java: | |
name: 'Java Format' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: 11 # recent versions of Google Java Format require JDK 11+ | |
distribution: zulu | |
- run: scripts/test-java-format.sh | |
bazel: | |
name: 'Bazel Format' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: scripts/test-bzl-format.sh |