Skip to content

Initial commit for Memoraith v0.1.0 #1

Initial commit for Memoraith v0.1.0

Initial commit for Memoraith v0.1.0 #1

Workflow file for this run

name: Memoraith CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, '3.10']
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 dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: |
pytest tests/
- name: Lint with flake8
run: |
pip install flake8
flake8 .
- name: Check type hints with mypy
run: |
pip install mypy
mypy memoraith/