Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: bazelbuild/setup-bazelisk@95c9bf48d0c570bb3e28e57108f3450cd67c1a44 # v2.0.0
- name: get pushed tag
id: get_pushed_tag
run: echo ::set-output name=TAG::v1.0.0
- name: get version
id: get_version
# strip the "v" from tag
run: echo "::set-output name=version::$(echo ${{ steps.get_pushed_tag.outputs.TAG }} | tail -c+2)"
- run: bazel build //...
- run: cd examples && bazel build //...
- run: cd examples && bazel test //...
Loading