Use "execution platform" version of cue binary #36
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
name: Continuous Integration | |
on: | |
# See https://docs.github.com/en/actions/reference/events-that-trigger-workflows. | |
pull_request: | |
jobs: | |
bazel-source-inspection: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out VCS repository | |
uses: actions/checkout@v3 | |
- name: Confirm Bazel files is formatted per "buildifier" | |
uses: thompsonja/[email protected] | |
with: | |
# See https://github.com/bazelbuild/buildtools/blob/master/WARNINGS.md. | |
warnings: -function-docstring,-module-docstring | |
buildifier_version: 6.1.0 | |
build-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out VCS repository | |
uses: actions/checkout@v3 | |
- name: Build and test all Bazel targets | |
uses: ./.github/actions/build-test |