chore(ci): separate build & publish and add lint #21
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'python/**' | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'python/**' | |
- ".github/workflows/python.yml" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install pipenv | |
run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python | |
- name: Lint | |
working-directory: python | |
run: | | |
pipenv install --dev | |
pipenv run flake8 databend_udf | |
pipenv run black --check databend_udf | |
- name: build | |
working-directory: python | |
run: | | |
python -m pip install build | |
python -m build | |
publish: | |
runs-on: ubuntu-latest | |
needs: test | |
if: github.event_name == 'push' | |
permissions: | |
contents: read | |
id-token: write | |
environment: | |
name: pypi.org | |
url: https://pypi.org/p/databend-udf/ | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build package | |
working-directory: python | |
run: | | |
python -m pip install build | |
python -m build | |
- uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
packages-dir: python/dist/ | |
skip-existing: true |