Skip to content

Docker image creation #11

Docker image creation

Docker image creation #11

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
types: [opened, reopened, synchronize, edited]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup bazel
uses: bazel-contrib/[email protected]
with:
# Avoid downloading Bazel every time.
bazelisk-cache: true
# Store build cache per workflow.
disk-cache: ${{ github.workflow }}
# Share repository cache between workflows.
repository-cache: true
- name: Build
run: bazel build //...
- name: Test
run: bazel test //...