Skip to content

KP-8714 Harvest from COMEDI #45

KP-8714 Harvest from COMEDI

KP-8714 Harvest from COMEDI #45

Workflow file for this run

name: Python quality control pipeline
on:
pull_request:
types:
- opened
- reopened
- synchronize
push:
branches:
- main
permissions:
contents: read
jobs:
black:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- name: Install required Python packages
run: python3.8 -m pip install black --user
- name: Check formatting with Black
run: python3.8 -m black --check .
unit-test:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- name: Install required Python packages
run: python3.8 -m pip install -r requirements_dev.txt --user
- name: Test with pytest
run: python3.8 -m pytest