Skip to content

feat: release TFD v3.5.0 with AUTO_REVIEW #31

feat: release TFD v3.5.0 with AUTO_REVIEW

feat: release TFD v3.5.0 with AUTO_REVIEW #31

Workflow file for this run

name: CI
on:
push:
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install test dependencies
run: python3 -m pip install --disable-pip-version-check -r requirements.txt
- name: Run root tests
run: python3 -m unittest discover -s scripts -p 'test_*.py' -v
- name: Run plugin tests
working-directory: plugins/tfd
run: python3 -m unittest discover -s scripts -p 'test_*.py' -v