Skip to content

Implement the sync script and add an e2e test #31

Implement the sync script and add an e2e test

Implement the sync script and add an e2e test #31

Workflow file for this run

name: Build
on:
push:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Setup bazel
uses: bazelbuild/setup-bazelisk@v3
- name: Mount bazel cache
uses: actions/cache@v4
with:
path: ~/.cache/bazel
key: bazel
- name: Bazel build
run: bazel build //...
- name: Bazel test
run: bazel test //...