Skip to content

Commit 402404c

Browse files
committed
Let's try to run something with GitHub Actions
1 parent ac649de commit 402404c

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/java.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Java workflow
2+
3+
on:
4+
push:
5+
branches:
6+
- trunk
7+
8+
env:
9+
NODE_VERSION: '13.x'
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout source tree
17+
uses: actions/checkout@v1
18+
- name: Setup bazelisk for Bazel builds
19+
uses: holvonix-open/[email protected]
20+
- name: Run Bazel build
21+
run: |
22+
bazel build //java/...

0 commit comments

Comments
 (0)