Initial commit #1
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 static code analysis | |
on: | |
push: | |
branches: | |
- master | |
- github-actions | |
pull_request: | |
branches: | |
- master | |
jobs: | |
run-tests: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: | |
- "3.7" | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
name: PyLint on | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setting up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Installing dependencies | |
run: python -m pip install pylint pytest . | |
# - name: Running PyLint static code analysis on src and tests | |
# run: | | |
# pylint calculator | |
# pylint tests | |
- name: Running PyLint static code analysis on src | |
run: pylint calculator | |
- name: Running PyLint static code analysis on tests | |
run: pylint tests |