Update generated docs #244
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: coverage | |
on: [push] | |
permissions: | |
contents: read | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3 | |
- name: Set up latest Python 3 | |
uses: actions/setup-python@d27e3f3d7c64b4bbf8e4abfb9b63b83e846e0435 # v4 | |
with: | |
python-version: 3 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install protobuf==3.17.3 pycodestyle coverage coveralls | |
- name: Test with coverage | |
run: | | |
cd python | |
COVERAGE_FILE=main.cov coverage run --source=phonenumbers ./testwrapper.py | |
COVERAGE_FILE=pb2.cov coverage run --source=phonenumbers.pb2 ./testpb2.py | |
coverage combine main.cov pb2.cov | |
- name: Upload coverage | |
env: | |
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | |
run: | | |
cd python | |
coveralls |