Skip to content

Bump version v0.4.0 -> v0.5.0. #8

Bump version v0.4.0 -> v0.5.0.

Bump version v0.4.0 -> v0.5.0. #8

Workflow file for this run

name: Continuous Integration
on: push
jobs:
tests:
name: Test Suite
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install python dependencies
run: |
pip install --upgrade pip
pip install -e .[dev]
- name: Run test suite
run: pytest