X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/07c8812937cf75ac5bc7ceac07ef5ea383f10f2f..5316836393682c6ec6a05d69c549d8167f46d8f6:/README.md diff --git a/README.md b/README.md index 696bfa7..6443569 100644 --- a/README.md +++ b/README.md @@ -425,15 +425,17 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 - uses: psf/black@stable - with: - args: ". --check" ``` -### Inputs +You may use `options` (Default is `'--check --diff'`) and `src` (Default is `'.'`) as +follows: -#### `black_args` - -**optional**: Black input arguments. Defaults to `. --check --diff`. +```yaml +- uses: psf/black@stable + with: + options: "--check --verbose" + src: "./src" +``` ## Ignoring unmodified files