Skip to content

build(deps-dev): update setuptools requirement from >=68.0 to >=82.0.… #27

build(deps-dev): update setuptools requirement from >=68.0 to >=82.0.…

build(deps-dev): update setuptools requirement from >=68.0 to >=82.0.… #27

Workflow file for this run

name: Bundle Test
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
bundle-test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ['3.10', '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 build tools
run: python -m pip install --upgrade pip setuptools wheel
- name: Install grncli
run: pip install .
- name: Build bundle
run: bash scripts/make-bundle
- name: Test bundle install
run: |
cd dist
unzip -o grncli-bundle.zip
cd grncli-bundle
bash install-offline
- name: Verify installation
run: |
export PATH="$HOME/.local/bin:$PATH"
grn --version