Skip to content

add logic to automatically search and import the mara_config.py fil… #11

add logic to automatically search and import the mara_config.py fil…

add logic to automatically search and import the mara_config.py fil… #11

Workflow file for this run

name: Build & Test
on: [push, fork]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- name: Chechout code
uses: actions/[email protected]
- name: Setup python
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Install and test application
env:
pythonversion: ${{ matrix.python-version }}
run: |
python -c "import sys; print(sys.version)"
pip install .[test]
echo Finished successful build with Python $pythonversion
- name: Test with pytest
run: |
pytest -v tests