Update Visa list, add Amex and Mastercard lists, fixes (unicode characters, private ranges), get_all_mccs_dict utility function #7
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
name: Pull Request | |
on: | |
pull_request: | |
env: | |
POETRY_VERSION: "1.4.2" | |
jobs: | |
build: | |
name: Build "Python ${{ matrix.target }}" | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
target: ["3.8", "3.9", "3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.target }} | |
- uses: abatilo/[email protected] | |
with: | |
poetry-version: ${{ env.POETRY_VERSION }} | |
- uses: actions/[email protected] | |
with: | |
path: ~/.cache/pypoetry/virtualenvs | |
key: poetry-${{ matrix.target }}-${{ hashFiles('poetry.lock') }} | |
- run: poetry install | |
shell: bash | |
- run: poetry run mypy iso18245/ |