Skip to content

Add test workflow with unittest (#189) #46

Add test workflow with unittest (#189)

Add test workflow with unittest (#189) #46

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:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
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 -y protobuf-compiler
pip install .
- name: Run unit tests
shell: bash
run: |
python -m unittest discover -p "*_test.py"