Skip to content

Dev stories: writer's block #195

Dev stories: writer's block

Dev stories: writer's block #195

name: Test with Python 🐍 totolo 🤖
on:
push:
branches: [ master ]
pull_request:
types: [ opened, synchronize ]
jobs:
test-with-totolo:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install totolo
- name: Test with totolo
run: |
python -c "import totolo; o=totolo.files('./notes'); assert(len(o.story)>0 and len(o.theme)>0);"