Skip to content

Clarify TLS handshake behavior #1093

Clarify TLS handshake behavior

Clarify TLS handshake behavior #1093

Workflow file for this run

---
name: "bazel build"
on:
push:
branches: [main]
pull_request:
schedule:
- cron: "0 0 * * *"
permissions: {}
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
actions: write
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
submodules: recursive
persist-credentials: false
- name: Mount bazel cache
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: "~/.cache/bazel"
key: bazel-${{ runner.os }}-build-${{ hashFiles('**/*.bzl', '**/*.bazel') }}
restore-keys: |
bazel-${{ runner.os }}-build-
- name: Build
run: bazel build //...
- name: Test
run: bazel test //...