Skip to content

Add paper & HF links #3

Add paper & HF links

Add paper & HF links #3

Workflow file for this run

name: Formatter
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
types: [opened, reopened, synchronize]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
formatter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v2
with:
python-version: '3.x'
- run: python -m pip install --upgrade pip
- run: pip install isort black
- run: isort . --profile black
- uses: psf/black@stable