Skip to content

testing version #30

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
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