Skip to content

Add testing workflow #12

Add testing workflow

Add testing workflow #12

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build data-validation
id: build-data-validation
uses: ./.github/reusable-build
with:
python-version: ${{ matrix.python-version }}
- name: Install test dependencies
run: |
pip install pytest scikit-learn scipy
- name: Run Test
run: |
rm -rf bazel-*
# run tests
pytest -vv