Skip to content

Even discretisation #31

Even discretisation

Even discretisation #31

Workflow file for this run

name: Run mypy / pylint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
linting:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2.4.2
- name: Install Python 3
uses: actions/setup-python@v3.1.2
with:
python-version: '3.8.10'
- name: Upgrade Pip and Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run mypy
run: mypy .
- name: Run pylint
run: pylint ./kolsol