Skip to content

Add test workflow with unittest #21

Add test workflow with unittest

Add test workflow with unittest #21

Workflow file for this run

# Github action definitions for unit-tests with PRs.
name: tfma-unit-tests
on:
push:
pull_request:
branches: [ master ]
paths-ignore:
- '**.md'
- 'docs/**'
workflow_dispatch:
jobs:
unit-tests:
if: github.actor != 'copybara-service[bot]'
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10']
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: |
setup.py
- name: Install dependencies
run: |
sudo apt update
sudo apt install protobuf-compiler -y
pip install .
- name: Run unit tests
shell: bash
run: |
python -m unittest discover -p "*_test.py"