Skip to content

feat: Add zarr v3 support to tensorstore backend #225

feat: Add zarr v3 support to tensorstore backend

feat: Add zarr v3 support to tensorstore backend #225

Workflow file for this run

name: Flake8
on:
workflow_dispatch:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
lint:
name: "flake8"
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v3
name: Check out
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: '3.11'
- name: Install dependencies 🔧
run: |
python -m pip install flake8
python -m pip install flake8-github-actions
- name: "Run Flake8"
run: "flake8 --format github"