Skip to content

bump version to 0.1.4 #23

bump version to 0.1.4

bump version to 0.1.4 #23

Workflow file for this run

# This workflow will install Python dependencies, run tests with some python versions.
# More information: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Test with PyTest
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Create and activate virtualenv
run: |
python -m venv venv
source venv/bin/activate
python -m pip install --upgrade pip
- name: Install dependencies
run: |
source venv/bin/activate
pip install -e .[dev]
- name: Test with pytest
run: |
source venv/bin/activate
pytest
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.xml
name: ${{ matrix.python-version }}-coverage
flags: python-${{ matrix.python-version }}