Skip to content

Bump pytest from 9.1.0 to 9.1.1 (#93) #32

Bump pytest from 9.1.0 to 9.1.1 (#93)

Bump pytest from 9.1.0 to 9.1.1 (#93) #32

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@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
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 //...