fix: type check in equality operator, no comparison should raise now #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jobs: | |
build_and_test: | |
name: CI | |
strategy: | |
matrix: | |
# Pin to 20.04 for 3.6: https://github.com/actions/setup-python/issues/544 | |
os: [ubuntu-20.04, macos-latest, windows-latest] | |
python-version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- run: python --version | |
- run: pip install -U pip | |
- run: pip install -U tox | |
- if: matrix.python-version == '3.9' && startsWith(matrix.os, 'ubuntu-') | |
run: | | |
echo "TOXENV=doctest,black,pylint,pytype,bandit,coverage" >> "$GITHUB_ENV" | |
- run: tox | |
env: | |
TOXENV: ${{ env.TOXENV }} | |
- if: matrix.python-version == '3.9' && startsWith(matrix.os, 'ubuntu-') | |
uses: AndreMiras/coveralls-python-action@develop | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: |