mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-11 03:39:59 +00:00
16 lines
280 B
YAML
16 lines
280 B
YAML
|
name: black
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
push:
|
||
|
|
||
|
permissions: read-all
|
||
|
|
||
|
jobs:
|
||
|
black:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
- run: python3 -m pip install --user colorama watchdog levenshtein cxxfilt black==23.12.1
|
||
|
- run: python3 -m black .
|