Skip to content

Bump a new version: 0.3.4 → 0.3.5 #70

Bump a new version: 0.3.4 → 0.3.5

Bump a new version: 0.3.4 → 0.3.5 #70

Workflow file for this run

name: Run tests in tox
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Checkouting source codes
uses: actions/checkout@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions coveralls
- name: Running the test with `tox`
run: tox -- --cov-report=xml
- name: Upload to Coveralls
run: coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}