Skip to content

Add hyphen to phone numbers (#2) #22

Add hyphen to phone numbers (#2)

Add hyphen to phone numbers (#2) #22

Workflow file for this run

name: Tests
on:
push:
branches: [main]
paths:
- "src/**"
- "tests/**"
- "pyproject.toml"
- "setup.py"
- "requirements*.txt"
- "tox.ini"
- ".github/workflows/tox.yml"
pull_request:
branches: [main]
paths:
- "src/**"
- "tests/**"
- "pyproject.toml"
- "setup.py"
- "requirements*.txt"
- "tox.ini"
- ".github/workflows/tox.yml"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache pip
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt', '**/pyproject.toml', '**/setup.py') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install tox
run: python -m pip install --upgrade pip tox
- name: Run tests with tox
run: tox -e py