Add test workflow with unittest #19
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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" |