Skip to content

Commit

Permalink
doc: add bazel example CI workflow (#887)
Browse files Browse the repository at this point in the history
add bazel ci example workflow. Workflow assumes that BUILD files exist

fixes #863
  • Loading branch information
FernandaDguez committed Jul 21, 2020
1 parent 6831e01 commit 511521d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions examples/ci/bazel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
steps:
- id: fetch-dependencies
uses: docker://insready/bazel
args: [bazel, fetch, //...]

- id: build
uses: docker://insready/bazel
args: [bazel, build, //...]

- id: test
uses: docker://insready/bazel
args: [bazel, test, //...]

- id: clean
uses: docker://insready/bazel
args: [bazel, clean]

0 comments on commit 511521d

Please sign in to comment.