Skip to content

Update version number to 0.6.7 #125

Update version number to 0.6.7

Update version number to 0.6.7 #125

Workflow file for this run

name: Pylint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- name: ⤵️ Checkout the repository
uses: actions/[email protected]
- name: 🏗 Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: 🏗 Install requirement
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: 🏗 Install pylint
run: python3 -m pip install pylint
- name: 🚀 Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')