We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0528e7d commit e18c41eCopy full SHA for e18c41e
.github/workflows/main.yml
@@ -0,0 +1,22 @@
1
+name: Bazel Tests
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches: [main]
7
8
+jobs:
9
+ bazel-test:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ # Download the Algorithms repo
14
+ - name: Checkout repo
15
+ uses: actions/checkout@v4
16
17
+ - name: Set up Bazel
18
+ uses: bazelbuild/setup-bazelisk@v3
19
20
+ - name: Run Bazel tests
21
+ run: |
22
+ bazel test //src/test/...
0 commit comments