Skip to content

Added isa conversion tool, ability to send/receive samples and to sto… #303

Added isa conversion tool, ability to send/receive samples and to sto…

Added isa conversion tool, ability to send/receive samples and to sto… #303

Workflow file for this run

name: CI Build
on:
pull_request:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, '3.10', '3.11']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install cython
run: |
pip install "cython==0.29.36"
cython --version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: flake8
- name: Make .env file
run: mv ./ptmd/resources/.env.example ./ptmd/resources/.env
- name: Test with python unittest
run: |
coverage run -m unittest discover -s tests/
coverage report -m
- name: Coveralls
uses: AndreMiras/coveralls-python-action@develop
with:
parallel: true
flag-name: Unit Test
coveralls_finish:
needs: build
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: AndreMiras/coveralls-python-action@develop
with:
parallel-finished: true