From 5cd538e405245876d3a77cc9d7f60c009dcbbec7 Mon Sep 17 00:00:00 2001 From: Max Meinhold Date: Tue, 2 Jul 2024 19:56:36 -0400 Subject: [PATCH] Reuse the lint workflow in the publish one --- .github/workflows/publish.yml | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1c6adf7..364203a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -25,28 +25,7 @@ jobs: lint: runs-on: ubuntu-latest needs: validate-gpg - - strategy: - matrix: - python-version: - - '3.7' - - '3.8' - - '3.9' - - steps: - - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip - if [ -f requirements-lint.txt ]; then pip install -r requirements-lint.txt; fi - - - name: Lint with pylint - run: | - pylint pylint_fixme_info + uses: mxmeinhold/pylint-fixme-info/.github/workflows/python-ci.yml build: runs-on: ubuntu-latest