Skip to content

Merge branch 'develop' into feature/rust #762

Merge branch 'develop' into feature/rust

Merge branch 'develop' into feature/rust #762

Workflow file for this run

name: pylint
on: [push]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
fetch-depth: 0
- name: Set up Python 3.10.4
uses: actions/setup-python@v4
with:
python-version: 3.10.4
- name: Cache python
uses: actions/cache@v3
with:
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-${{ hashFiles('setup.py') }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint==2.14
pip install anybadge
python -m pip install .
- name: Analysing the code with pylint
run: |
python repo_utils/pylint_maker.py
- name: Commit README
run: |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git commit -m "Update pylint score" -a || echo "No changes to commit"
- name: Push README
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}