Updated all workflow for better reuse #29
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pylint | |
on: [ pull_request, workflow_dispatch ] | |
jobs: | |
pylint: | |
name: Pylint Validation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Prepare Environment | |
uses: ./.github/actions/prepare-environment | |
with: | |
python-version: 3.11 | |
setup-type: dev | |
- name: Analysing the code with pylint | |
run: | | |
make check-lint |