Skip to content

Major modifications and new features. In particular: hash-based verif… #95

Major modifications and new features. In particular: hash-based verif…

Major modifications and new features. In particular: hash-based verif… #95

Workflow file for this run

name: unittest
on:
push:
branches: [ "stable" ]
paths:
- 'tests/test_MetaDetective.py'
- 'src/MetaDetective/MetaDetective.py'
pull_request:
branches: [ "stable" ]
paths:
- 'tests/test_MetaDetective.py'
- 'src/MetaDetective/MetaDetective.py'
jobs:
unittest:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Run Unit Tests
run: python -m unittest discover tests -p '*test*.py'