Skip to content

Add temporary ducer implementation #13

Add temporary ducer implementation

Add temporary ducer implementation #13

Workflow file for this run

name: Bazel
on: [push, pull_request]
jobs:
setup-bazel:
runs-on: ubuntu-22.04
steps:
- name: Run setup-bazel
uses: bazel-contrib/setup-bazel@0.8.5
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
# Checks-out your repository under $GITHUB_WORKSPACE, which is the CWD for
# the rest of the steps
- uses: actions/checkout@v2
# build
- name: Build the code
run: bazel build //...
# test
- name: Test the code
run: bazel test //...