Bump phonenumbers from 8.13.33 to 8.13.34 #299
Workflow file for this run
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: Tests | |
on: | |
push: | |
branches-ignore: | |
- 'main' | |
workflow_dispatch: | |
pull_request_target: | |
types: [assigned, opened, synchronize, reopened] | |
branches-ignore: | |
- 'main' | |
pull_request: | |
types: [opened, reopened] | |
jobs: | |
testing: | |
runs-on: ubuntu-20.04 | |
strategy: | |
max-parallel: 4 | |
matrix: | |
python-version: [3.10.5] | |
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: Install Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install coverage | |
- name: Run Tests | |
run: | | |
coverage run --source=appointment manage.py test appointment.tests --verbosity=1 | |
coverage report | |
coverage xml | |
- name: Upload to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./coverage.xml # specify the location of the coverage report | |
flags: unittests # optional | |
name: codecov-umbrella # optional |