Skip to content

still playing with cython #306

still playing with cython

still playing with cython #306

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: Setup venv
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade venv
python -m venv venv
source venv/bin/activate
- name: Install cython
run: |
pip install "cython<3.0.0"
cython --version
- name: Install dependencies
run: |
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