Skip to content

Test

Test #68

Workflow file for this run

name: Run linter
on:
pull_request:
push:
branches:
- main
jobs:
lint:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.9]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install pytest black
- name: Lint
run: black .