Skip to content

Test

Test #117

Workflow file for this run

name: Test
on:
workflow_dispatch:
jobs:
tests:
runs-on: ${{ matrix.os }}
if: ${{ github.event.workflow_run == null || github.event.workflow_run.conclusion == 'success'}}
strategy:
matrix:
python-version: ["3.10"]
os: ["ubuntu-22.04", "macos-12", "windows-2019"]
steps:
- uses: actions/checkout@v3.5.3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.7.0
with:
python-version: ${{ matrix.python-version }}
- name: Start build cache proxy
uses: ./.github/actions/buildcache
env:
BAZEL_REMOTE_AZBLOB_SHARED_KEY : ${{ secrets.BAZEL_REMOTE_AZBLOB_SHARED_KEY }}
- name: Run tests
uses: ./.github/actions/test