Skip to content

Bump pyjnius from 1.6.1 to 1.7.0 and Python requirement to 3.9 (#29) #107

Bump pyjnius from 1.6.1 to 1.7.0 and Python requirement to 3.9 (#29)

Bump pyjnius from 1.6.1 to 1.7.0 and Python requirement to 3.9 (#29) #107

Workflow file for this run

name: Build and Test
on:
workflow_dispatch:
push:
branches: [ main ]
paths-ignore:
- '.github/**'
- '.idea/**'
- '.run/**'
pull_request:
branches: [ main ]
paths-ignore:
- '.idea/**'
- '.run/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: 'pip' # caching pip dependencies
- name: Build & Install & Test
run: |
python3 --version
pip install coverage pylint pytest setuptools
python3 -m compileall -f pydbzengine
pip install .[dev,dlt,iceberg]
python3 -m coverage report -m ./pydbzengine/*.py
python3 -m coverage run --source=./tests/ -m unittest discover -s tests/
# python3 -m pylint pydbzengine