chore(deps)(deps-dev): update setuptools requirement from >=68 to >=82.0.1 in /packages/ballast-python #301
Workflow file for this run
This file contains hidden or 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: Language Packs | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| python-pack: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Validate package imports | |
| run: | | |
| uv run --python 3.12 python -m py_compile packages/ballast-python/ballast/cli.py | |
| uv run --python 3.12 python -m py_compile packages/ballast-python/ballast/__main__.py | |
| go-pack: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.24.x' | |
| - name: Build ballast wrapper | |
| run: | | |
| cd cli/ballast | |
| go build . | |
| - name: Build ballast-go language pack | |
| run: | | |
| cd packages/ballast-go | |
| go build ./cmd/ballast-go |