Skip to content

Ci uplift

Ci uplift #1

Workflow file for this run

name: Python Lint and Type Check
on:
pull_request:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
pip install flake8 mypy black
- name: Run Linting
run: ./lint.sh
- name: Run Type Checks
run: ./type_check.sh