Skip to content

Removed py3.7 support, chagned to flit #103

Removed py3.7 support, chagned to flit

Removed py3.7 support, chagned to flit #103

Workflow file for this run

name: continuous-integration
on: [push, pull_request]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.10
- uses: pre-commit/action@v2.0.0
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
include:
- python-version: 3.10
rabbitmq: 3.6
- python-version: 3.10
rabbitmq: 3.8
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 python dependencies
run: pip install -e .[cli,gui,dev,docs,sci]
- name: Create MongoDB Docker container
id: build_mongo_docker
uses: DigiPie/mongo-action@v1.0.1
with:
image-version: latest
port: 27017
- name: Run pytest
run: pytest --cov=mincepy -sv -p no:nb_regression test
- name: Create xml coverage
run: coverage xml
- name: Upload coverage to Codecov
if: github.repository == 'muhrin/mincepy'
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml
name: mincepy