Skip to content

chore(ci): separate build & publish and add lint #17

chore(ci): separate build & publish and add lint

chore(ci): separate build & publish and add lint #17

Workflow file for this run

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
- 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: build

Check failure on line 39 in .github/workflows/python.yml

View workflow run for this annotation

GitHub Actions / Python

Invalid workflow file

The workflow is not valid. .github/workflows/python.yml (Line: 39, Col: 12): Job 'publish' depends on unknown job 'build'.
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