Skip to content

Add delete().

Add delete(). #7

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Run local mailhog container
run: docker-compose up -d
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Cache pip
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-${{ matrix.python-version }}-pip
restore-keys: ${{ runner.os }}-${{ matrix.python-version }}-pip
- run: python -m pip install black flake8
- run: |
flake8
black . --check
- run: python -m pip install -e .
- run: python -m pip install pytest
- run: |
pytest