Skip to content

Fixed Typo in README #30

Fixed Typo in README

Fixed Typo in README #30

Workflow file for this run

name: CI Code Checks
on: [pull_request]
permissions:
contents: write
jobs:
build:
name: code checks
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_dev.txt
- name: Checking formatting and analysing the code with pylint and flake8
run: make lint
- name: Running tests
run: make test
- name: Type checking with mypy
run: mypy --config setup.cfg src