Use an alias
for third_party/java/jspecify_annotations
instead of a java_library
that exports one dependency. This may make certain usages better.
#156
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
name: "Test" | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Check out repository' | |
uses: actions/checkout@v2 | |
- name: 'Cache Bazel dependencies' | |
uses: actions/[email protected] | |
with: | |
path: ~/.cache/bazel/*/*/external | |
key: bazel-${{ hashFiles('MODULE.bazel') }} | |
restore-keys: | | |
bazel- | |
- name: 'Test' | |
shell: bash | |
run: bazelisk test --lockfile_mode=error --test_output=errors //... |