Skip to content

Bump actions/checkout from 7.0.0 to 7.0.1 (#101) #46

Bump actions/checkout from 7.0.0 to 7.0.1 (#101)

Bump actions/checkout from 7.0.0 to 7.0.1 (#101) #46

Workflow file for this run

on:
push:
branches:
- main
pull_request:
permissions: {}
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout source tree
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Setup bazel/bazelisk
uses: bazel-contrib/setup-bazel@c5acdfb288317d0b5c0bbd7a396a3dc868bb0f86 # 0.19.0
with:
bazelisk-cache: true
disk-cache: ${{ github.workflow }}
external-cache: true
repository-cache: true
# TODO: use --config=ci
# bazelrc: |
# build --config=ci
bazelrc: |
build --color=yes
- name: build
run: bazel build //...
- name: test
run: bazel test //...