Skip to content

Adding some type hints #100

Adding some type hints

Adding some type hints #100

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.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- uses: pre-commit/[email protected]
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
include:
- python-version: 3.8
rabbitmq: 3.6
- python-version: 3.8
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/[email protected]
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