Skip to content

Update README.md

Update README.md #5

Workflow file for this run

name: Pylint
on: [push, pull_request, merge_request]
jobs:
build:

Check failure on line 7 in .github/workflows/pylint_check.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/pylint_check.yaml

Invalid workflow file

You have an error in your yaml syntax on line 7
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- name: Set up Python
uses: actions/checkout@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Running Pylint
run: |
pylint src/ --output-format=json:pylint_report.json, colorized
- name: Upload Pylint Artifact
uses: actions/upload-artifact@v3
with:
name: pylint-report
path: pylint_report.json