Skip to content

DOC(README): rule code assignment policy #147

DOC(README): rule code assignment policy

DOC(README): rule code assignment policy #147

Workflow file for this run

name: Test TorchFix
on:
pull_request:
workflow_dispatch:
jobs:
test-torchfix:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Upgrade build dependencies
run: |
pip3 install -U pip
pip3 install -U setuptools
- name: Install TorchFix
run: |
pip3 install ".[dev]"
- name: Run pytest
run: |
pytest tests
- name: Run flake8
run: |
flake8
- name: Run mypy
run: |
mypy .
- name: Run black
run: |
black --check .