Skip to content

Fix pop and setdefault methods #180

Fix pop and setdefault methods

Fix pop and setdefault methods #180

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10' ]
name: Run tests
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: make init
- name: Lint
run: make check
if: matrix.python-version == 'disabled'
- name: Run tests
run: make test
- name: Upload coverage
run: pip install coveralls && make coverage && coveralls --service=github-actions
if: matrix.python-version == '3.8'
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
GITHUB_TOKEN: $COVERALLS_REPO_TOKEN