Skip to content

drop python 3.7 support, add python 3.12 support #16

drop python 3.7 support, add python 3.12 support

drop python 3.7 support, add python 3.12 support #16

Workflow file for this run

name: mara-dbt
on:
push:
branches:
- main
pull_request:
branches:
- main
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/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install application
env:
pythonversion: ${{ matrix.python-version }}
run: |
python -c "import sys; print(sys.version)"
pip install .
echo Finished successful build with Python $pythonversion