All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
18 group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
19 cancel-in-progress: true
23 # We want to run on external PRs, but not on our own internal PRs as they'll be run
24 # by the push to the branch. Without this if check, checks are duplicated since
25 # internal PRs match both the push and pull_request events.
27 github.event_name == 'push' || github.event.pull_request.head.repo.full_name !=
30 runs-on: ${{ matrix.os }}
34 python-version: ["3.8", "3.9", "3.10", "3.11", "pypy-3.8"]
35 os: [ubuntu-latest, macOS-latest, windows-latest]
38 - uses: actions/checkout@v3
40 - name: Set up Python ${{ matrix.python-version }}
41 uses: actions/setup-python@v4
43 python-version: ${{ matrix.python-version }}
47 python -m pip install --upgrade pip
48 python -m pip install --upgrade tox
51 if: "!startsWith(matrix.python-version, 'pypy')"
53 tox -e ci-py$(echo ${{ matrix.python-version }} | tr -d '.') -- -v --color=yes
55 - name: Unit tests (pypy)
56 if: "startsWith(matrix.python-version, 'pypy')"
57 run: tox -e ci-pypy3 -- -v --color=yes
59 - name: Upload coverage to Coveralls
60 # Upload coverage if we are on the main repository and
61 # we're running on Linux (this action only supports Linux)
63 github.repository == 'psf/black' && matrix.os == 'ubuntu-latest' &&
64 !startsWith(matrix.python-version, 'pypy')
65 uses: AndreMiras/coveralls-python-action@8799c9f4443ac4201d2e2f2c725d577174683b99
67 github-token: ${{ secrets.GITHUB_TOKEN }}
69 flag-name: py${{ matrix.python-version }}-${{ matrix.os }}
74 if: github.repository == 'psf/black'
76 runs-on: ubuntu-latest
78 - uses: actions/checkout@v3
79 - name: Send finished signal to Coveralls
80 uses: AndreMiras/coveralls-python-action@8799c9f4443ac4201d2e2f2c725d577174683b99
82 parallel-finished: true
87 github.event_name == 'push' || github.event.pull_request.head.repo.full_name !=
89 runs-on: ${{ matrix.os }}
93 os: [ubuntu-latest, macOS-latest]
96 - uses: actions/checkout@v3
98 - name: Set up latest Python
99 uses: actions/setup-python@v4
103 - name: Install black with uvloop
105 python -m pip install pip --upgrade --disable-pip-version-check
106 python -m pip install -e ".[uvloop]"
108 - name: Format ourselves
109 run: python -m black --check .