Skip to content

Merge pull request #69 from samschott/dependabot/github_actions/actio… #847

Merge pull request #69 from samschott/dependabot/github_actions/actio…

Merge pull request #69 from samschott/dependabot/github_actions/actio… #847

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
checks:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Setup python
uses: actions/[email protected]
with:
python-version: '3.8'
- name: Install
run: |
python -m pip install -U pip
python -m pip install -U .[dev]
- name: black
run: black . --check --diff
- name: flake8
run: flake8 .