Skip to content

Change docker image in test.yml #44

Change docker image in test.yml

Change docker image in test.yml #44

Workflow file for this run

name: Linter
on:
push:
branches: [ "main", "development" ]
pull_request:
branches: [ "main", "development" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
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
sudo apt install shellcheck
- name: Analysing the code with pylint
run: |
./ci/pylint.sh
- name: Analysing shell scripts with shellcheck
run: |
./ci/shellcheck.sh