fix curation hotkeys #47
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: formatting_check | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Formatting check | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install black | |
run: pip install black | |
- name: Check whether the code is formatted correctly | |
run: black -l 180 --check sortingview |