Skip to content

move attribute for last update time to baseconnector #23

move attribute for last update time to baseconnector

move attribute for last update time to baseconnector #23

Workflow file for this run

name: Build Python Package
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ main ]
tags:
- "v*"
paths:
- .github/workflows/build.yml
- '**.py'
pull_request:
paths:
- .github/workflows/build.yml
- '**.py'
jobs:
build-python:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f setup_requirements.txt ]; then pip install -r setup_requirements.txt; fi
python -m pip install build
- name: Build
run: |
python -m build
- name: Install built package
run: |
pip install dist/*.whl
- name: Lint
run: |
make lint
# - name: Test
# run: |
# make test