Skip to content

Rename Layer -> ShardLayer, and introduce another Layer type #121

Rename Layer -> ShardLayer, and introduce another Layer type

Rename Layer -> ShardLayer, and introduce another Layer type #121

Workflow file for this run

name: Python application
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install -e .
- name: Pre-commit checks
run: |
pre-commit run --all-files
- name: Run tests
run: |
python -m pytest