Skip to content

Add update_entry() method #25

Add update_entry() method

Add update_entry() method #25

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
unit-tests:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 4
matrix:
os: [ubuntu-latest]
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install flake8
python setup.py install
- name: Unit tests
run: |
python setup.py test
- name: PEP8
run: |
flake8 --max-line-length 120