Skip to content

Change run.sh shebang from /bin/sh to /bin/bash to be able to use source #125

Change run.sh shebang from /bin/sh to /bin/bash to be able to use source

Change run.sh shebang from /bin/sh to /bin/bash to be able to use source #125

Workflow file for this run

name: Pylint
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10.9
uses: actions/setup-python@v3
with:
python-version: '3.10.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Analysing the code with pylint
run: |
pylint --rcfile=.pylintrc $(git ls-files '*.py')