Skip to content

Fix assertion error when an entry is deleted while being updated. #335 #949

Fix assertion error when an entry is deleted while being updated. #335

Fix assertion error when an entry is deleted while being updated. #335 #949

Workflow file for this run

name: build
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_dispatch:
defaults:
run:
shell: bash
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: [
"3.10", "3.11", "3.12",
"pypy-3.10"
]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: ./run.sh ci-install
- run: ./run.sh ci-run
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}