Skip to content

Add ELOG calculations support and example #20

Add ELOG calculations support and example

Add ELOG calculations support and example #20

Workflow file for this run

name: Integration tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.7', '3.10']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{matrix.python}}
cache: 'pip'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Analyzing the code with pylint
run: pylint pyOxygenSCPI examples
- name: Installing the package
run: python3 setup.py install
- name: Running unit tests with pytest
run: pytest