Skip to content

Add keep flag to parallel_* to keep or forget callback's results #27

Add keep flag to parallel_* to keep or forget callback's results

Add keep flag to parallel_* to keep or forget callback's results #27

Workflow file for this run

name: Check and Test
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Runt tests
run: |
export PYTHONPATH=.
python -m unittest -v ./tests/test_daemon.py
- name: Lint
run: |
pip install ruff
ruff check --no-fix --statistics