diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 4ead31b..ee8e74d 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -17,22 +17,6 @@ jobs: python-version: ["3.11"] os: [ubuntu-latest] steps: - - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 - with: - python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install pylint - pip install mido - pip install ctype - pip install argparse - - name: Analysing the code with pylint - run: | - pylint $(git ls-files '*.py') | tee pylint_output.txt - grep 'rated at' pylint_output.txt | awk '{print $7}' > pylint_score.txt - uses: Silleellie/pylint-github-action@v2 with: lint-path: midi2key.py