Remove windows from the platform as jarjar test cannot run on windows as the path is created differently. #190
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 //... |