Skip to content

Useful updates for future improvement #10

Useful updates for future improvement

Useful updates for future improvement #10

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
- uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip'
cache-dependency-path: 'requirements.txt'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Analyzing the code with pylint
run: pylint pyOxygenSCPI
#- name: Running unit tests with pytest - TODO: has problems with __init__.py file
# run: pytest ..