adding configuration for downloading linux_arm64 binary #18
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: Tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
tests: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
# Caches and restores the bazelisk download directory, the bazel build directory. | |
- name: Cache bazel | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cache/bazelisk | |
~/.cache/bazel | |
key: ${{ runner.os }}-bazel-cache | |
- uses: actions/checkout@v2 | |
- name: help | |
run: bazel run @rules_endorctl_toolchains//:endorctl -- --help | |