Introduce new message, field, and enum value options for ink.proto.Version type #2739
This file contains hidden or 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
| # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions | |
| name: BazelTest | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| jobs: | |
| bazel_test: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| env: | |
| USE_BAZEL_VERSION: 8.5.1 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: bazel-contrib/setup-bazel@0.18.0 | |
| if: github.repository == 'google/ink' | |
| with: | |
| bazelisk-cache: true | |
| disk-cache: true | |
| repository-cache: true | |
| external-cache: true | |
| google-credentials: ${{ secrets.GOOGLE_CREDENTIALS }} | |
| - name: Test | |
| run: > | |
| bazel test | |
| ${{ github.repository == 'google/ink' && | |
| '--google_default_credentials --remote_cache=https://storage.googleapis.com/ink-open-source-ci/' | |
| || ''}} | |
| --test_output=errors --keep_going //ink/... |