Skip to content

Update and rename README.md to README.rst #114

Update and rename README.md to README.rst

Update and rename README.md to README.rst #114

name: lint-format-install
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install dependencies
run: |
make install
- name: Format code with Python Black
run: |
make format
- name: Lint with pylint
run: |
make lint