Skip to content

Deploy subfootball tracker #44

Deploy subfootball tracker

Deploy subfootball tracker #44

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 //...