Skip to content

Fix handling of optional default value for .pop() #2

Fix handling of optional default value for .pop()

Fix handling of optional default value for .pop() #2

Workflow file for this run

on:
pull_request:
push:
branches:
- master
name: Tests
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- name: Install dependencies
run: pip install ruff
- name: Run linting and formatting checks
run: ruff check
unit-tests:
name: Unit Tests
needs: lint
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run doctests
run: python easydict/__init__.py -v