Skip to content

Commit

Permalink
Let's try to run something with GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Nov 21, 2020
1 parent ac649de commit 402404c
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/java.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Java workflow

on:
push:
branches:
- trunk

env:
NODE_VERSION: '13.x'

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout source tree
uses: actions/checkout@v1
- name: Setup bazelisk for Bazel builds
uses: holvonix-open/setup-bazelisk@v0.6.0
- name: Run Bazel build
run: |
bazel build //java/...

0 comments on commit 402404c

Please sign in to comment.