Skip to content

Initial version of unittest #5

Initial version of unittest

Initial version of unittest #5

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
unittest:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/[email protected]
- name: Setup Python
uses: actions/[email protected]
with:
python-version: ${{ matrix.python }}
- name: Install policy validator
run: pip install parameterized
- name: Run test
run: python -m unittest test_tf.py