Skip to content

add event for new list items #26

add event for new list items

add event for new list items #26

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
paths:
- "**/*.py"
pull_request:
branches: [ main ]
paths:
- "**/*.py"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install test dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.test.txt
- name: Run tests
run: pytest