Skip to content

Update tools

Update tools #14

Workflow file for this run

name: build
on:
push:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: install requirements
run: pip install pre-commit
- name: run linting
run: make lint