Skip to content

update: version to 1.0.6 #8

update: version to 1.0.6

update: version to 1.0.6 #8

Workflow file for this run

name: Coveralls Coverage
on:
push:
branches:
- master
paths:
- '**/*.py'
pull_request:
branches:
- master
paths:
- '**/*.py'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Check out the repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install mock
pip install coveralls
pip install responses
- name: Run tests
run: |
coverage run -m unittest discover
coverage xml
- name: Upload coverage to Coveralls
if: success()
run: coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}