Skip to content

Merge pull request #11 from logchange/mr-target-branch #75

Merge pull request #11 from logchange/mr-target-branch

Merge pull request #11 from logchange/mr-target-branch #75

Workflow file for this run

name: Python Testing
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'
cache: 'pip' # caching pip dependencies
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests
run: python -m unittest discover -s test -t test -p '*_test.py'