Skip to content

Bump version to 0.0.4 #374

Bump version to 0.0.4

Bump version to 0.0.4 #374

Workflow file for this run

name: Tests
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- uses: pre-commit/[email protected]
tests:
name: Run tests for Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
needs:
- pre-commit
strategy:
matrix:
python-version: ['3.10']
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 dev environment
run: |
python -m pip install --upgrade pip
pip install '.[test]'
- name: Run the tests with pytest
run: |
python -m pytest --cov=posteriors --cov-report term-missing