diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2023-03-04 16:54:57 +0200 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2023-03-04 16:54:57 +0200 |
commit | 3fb45c6f4dc86b77bdeef27a70dc10dc7911f704 (patch) | |
tree | 68b24b07613efbbc53ffd2c929b3a938ca5cb623 | |
parent | Suppress the black reformat commit from git blame (diff) | |
download | pkgdev-3fb45c6f4dc86b77bdeef27a70dc10dc7911f704.tar.gz pkgdev-3fb45c6f4dc86b77bdeef27a70dc10dc7911f704.tar.bz2 pkgdev-3fb45c6f4dc86b77bdeef27a70dc10dc7911f704.zip |
ci: add black format check
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
-rw-r--r-- | .github/workflows/test.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0102337..9f838be 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -84,3 +84,10 @@ jobs: - name: Run linting tools run: | pylint --exit-zero src/pkgdev + + format: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + - uses: psf/black@stable |