Skip to content

[JAX] Remove stale references to //jax:experimental, which is being removed. #2386

[JAX] Remove stale references to //jax:experimental, which is being removed.

[JAX] Remove stale references to //jax:experimental, which is being removed. #2386

Workflow file for this run

name: tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
schedule:
- cron: '30 3 * * *'
permissions:
contents: read
actions: write # to cancel previous workflows
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
name: "Pytest ${{ matrix.python-version }} on ${{ matrix.os }} jax=${{ matrix.jax-version}}"
runs-on: "${{ matrix.os }}"
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
os: [ubuntu-latest]
jax-version: ["newest"]
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v5.3.0
with:
python-version: "${{ matrix.python-version }}"
- name: Run CI tests
run: JAX_VERSION="${{ matrix.jax-version }}" bash test.sh
shell: bash