X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/34613383abad9afa5cc1b3945e50bbfca13d036e..4ccc8c86f5081990000c4dc09868d0bf040fb484:/README.md?ds=sidebyside diff --git a/README.md b/README.md index b06c937..16dd837 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,7 @@ _Contents:_ **[Installation and usage](#installation-and-usage)** | **[pyproject.toml](#pyprojecttoml)** | **[Editor integration](#editor-integration)** | **[blackd](#blackd)** | **[black-primer](#black-primer)** | **[Version control integration](#version-control-integration)** | +**[GitHub Actions](#github-actions)** | **[Ignoring unmodified files](#ignoring-unmodified-files)** | **[Used by](#used-by)** | **[Testimonials](#testimonials)** | **[Show your style](#show-your-style)** | **[Contributing](#contributing-to-black)** | **[Change log](#change-log)** | @@ -381,6 +382,24 @@ If you're already using Python 3.7, switch the `language_version` accordingly. F `stable` is a branch that tracks the latest release on PyPI. If you'd rather run on master, this is also an option. +## GitHub Actions + +Create a file named `.github/workflows/black.yml` inside your repository with: + +```yaml +name: Lint + +on: [push, pull_request] + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + - uses: psf/black@stable +``` + ## Ignoring unmodified files _Black_ remembers files it has already formatted, unless the `--diff` flag is used or