Skip to content

Reenable testing

Reenable testing #14

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.7'
cache: 'pip'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Analyzing the code with pylint
run: pylint pyOxygenSCPI
- name: Installing the package
run: python3 setup.py install
- name: Running unit tests with pytest
run: pytest