Skip to content

added command for setting measurement header #29

added command for setting measurement header

added command for setting measurement header #29

Workflow file for this run

name: Integration tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
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 examples
- name: Installing the package
run: python3 setup.py install
- name: Running unit tests with pytest
run: pytest