Skip to content

Enhance GlobalWorkspace to support dtype and device in zero padding; … #8

Enhance GlobalWorkspace to support dtype and device in zero padding; …

Enhance GlobalWorkspace to support dtype and device in zero padding; … #8

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install torch==2.5.1 torchvision==0.20.1 torchaudio==2.5.1 --extra-index-url https://download.pytorch.org/whl/cpu
pip install -r requirements.txt
pip install pylint==3.0.3
- name: Run linting tests
run: |
pytest tests/test_lint.py -v