Skip to content

Fix package local version in CI script #13

Fix package local version in CI script

Fix package local version in CI script #13

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- 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: |
python -m pip install --upgrade pip
pip install pytest jupyter
# make sure the local version is PEP440 compliant and install in editable mode
- name: Install the bdikit package
run: |
sed -i 's/__version__ = "\(.*\)"/__version__ = "\1+local"/g' bdikit/__init__.py
pip install -e .
- name: Test with pytest
run: |
pytest