Skip to content

Merge pull request #2 from 6C656C65/readme/deploy_ansible #62

Merge pull request #2 from 6C656C65/readme/deploy_ansible

Merge pull request #2 from 6C656C65/readme/deploy_ansible #62

Workflow file for this run

name: Run Unit Tests
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install dependencies
run: |
pip install --no-cache-dir -r requirements.txt
- name: Run tests
run: python -m unittest discover -s tests