https://github.com/romnn/setup-bazel-action
setup bazel in your actions workflow.
https://github.com/romnn/setup-bazel-action
actions bazel ci configuration installation-script setup
Last synced: about 1 month ago
JSON representation
setup bazel in your actions workflow.
- Host: GitHub
- URL: https://github.com/romnn/setup-bazel-action
- Owner: romnn
- License: mit
- Created: 2021-01-15T17:01:15.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-15T19:17:29.000Z (over 5 years ago)
- Last Synced: 2025-12-30T11:45:16.627Z (5 months ago)
- Topics: actions, bazel, ci, configuration, installation-script, setup
- Language: Shell
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## setup bazel action
GitHub action to setup bazel.
#### Usage
**Note**: Make sure the runner or container image you use the action with has at least `wget`/`curl`, `unzip` and a java jdk installed.
```yaml
# .github/workflows/ci.yml
name: CI
on: ['push']
jobs:
build:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v2
- name: 'setup bazel'
uses: 'romnnn/setup-bazel-action@master'
# optionally:
with:
version: 3.7.1
- name: 'run a bazel command'
run: |
bazel -h
```