X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/5918a016ff82e5fa12097d07b1624a89ec4e60ac..4b7b5ed5b8630a906e2ef3a405134131651a251e:/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