Skip to content

Implement TIME type, stored to Databend DateTime type (#42) #106

Implement TIME type, stored to Databend DateTime type (#42)

Implement TIME type, stored to Databend DateTime type (#42) #106

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- name: Build package
run: |
python -m pip install build
python -m build
- uses: pypa/gh-action-pypi-publish@release/v1
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
with:
packages-dir: dist/
skip-existing: true