Skip to content

Commit

Permalink
first draft
Browse files Browse the repository at this point in the history
  • Loading branch information
EdAbati committed Oct 19, 2024
1 parent 0c1650c commit a10d425
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/downstream_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,3 +181,38 @@ jobs:
run: |
cd py-shiny
make narwhals-test-integration
vegafusion:
env:
UV_SYSTEM_PYTHON: true

strategy:
matrix:
python-version: ["3.12"]
os: [ubuntu-latest]

runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: "true"
cache-suffix: ${{ matrix.python-version }}
cache-dependency-glob: "**requirements*.txt"
- uses: prefix-dev/setup-pixi@v0.8.1
with:
pixi-version: v0.27.1
- name: clone-vegafusion
run: |
git clone https://github.com/vega/vegafusion.git --depth=1
cd vegafusion
git log
- name: Build vegafusion wheel
run: |
cd vegafusion
pixi run build-py-vegafusion

0 comments on commit a10d425

Please sign in to comment.