Skip to content

The SBS current token uses topk_in_each_group twice now because each … #65

The SBS current token uses topk_in_each_group twice now because each …

The SBS current token uses topk_in_each_group twice now because each … #65

Workflow file for this run

name: Black Code Formatter
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
format:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black
- name: Format code with Black
run: |
black --check $(git ls-files '*.py')