Readme files updated for 2 node apps and some other minor bug fixes #365
Workflow file for this run
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: black-action | |
on: [push, pull_request] | |
jobs: | |
linter_name: | |
name: runner / black formatter | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Black | |
run: pip install "black[jupyter]" | |
- uses: actions/checkout@v4 | |
- uses: rickstaa/action-black@v1 | |
with: | |
black_args: ". --check --verbose" |