Skip to content

bump version 0.11.0 #23

bump version 0.11.0

bump version 0.11.0 #23

Workflow file for this run

name: mara-cron
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- name: Chechout code
uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install package
env:
pythonversion: ${{ matrix.python-version }}
run: |
python -c "import sys; print(sys.version)"
pip install .
echo Finished successful build with Python $pythonversion
- name: Test with pytest
run: |
pip install .[test]
mkdir -p tests/logs
pytest -v tests