Skip to content

Run one CI target with JAX support #1081

Run one CI target with JAX support

Run one CI target with JAX support #1081

Workflow file for this run

name: flake
on: [push, pull_request]
jobs:
flake:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: [3.9]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Test
run: |
pip install flake8
flake8 tools --extend-exclude '*/test/*,*/examples/*,*/data/*,*/utility/*,*/dependency/*,dependencies.py,setup_git.py,*/pmi1/*,*/dev_tools/*,*/benchmark/*,*/scripts/*,components/*'