We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8358601 commit d5d30a8Copy full SHA for d5d30a8
.github/workflows/bazel_cli_build.yml
@@ -0,0 +1,30 @@
1
+name: Bazel CLI Build (macOS)
2
+
3
+on:
4
+ push:
5
+ paths:
6
+ - 'cli/**'
7
+ - '.github/workflows/bazel_cli_build.yml'
8
+ pull_request:
9
+ branches: [ main ]
10
11
12
13
+ workflow_dispatch:
14
15
+jobs:
16
+ build-macos:
17
+ runs-on: macos-latest
18
+ steps:
19
+ - name: Checkout repository
20
+ uses: actions/checkout@v4
21
+ with:
22
+ submodules: true
23
+ - name: Set up Bazel
24
+ uses: bazel-contrib/setup-bazel@0.14.0
25
26
+ bazelisk-cache: true
27
+ disk-cache: ${{ github.workflow }}
28
+ repository-cache: true
29
+ - name: Build CLI with Bazel
30
+ run: bazel build //cli/...
0 commit comments