Skip to content

migrated functionality to use venv instead of virtualenv #125

migrated functionality to use venv instead of virtualenv

migrated functionality to use venv instead of virtualenv #125

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
name: test
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: bazelbuild/setup-bazelisk@v2
- name: Mount bazel cache
uses: actions/cache@v3
with:
path: "~/.cache/bazel"
key: ${{ runner.os }}-bazel-cache
- run: bazel build //...
- run: bazel test //...