Skip to content

added some noqa

added some noqa #1

Workflow file for this run

name: Project lint
on:
workflow_dispatch:
push:
branches:
- main
tags:
- "*"
pull_request:
branches:
- "*"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: make dependencies
- name: Lint
run: make lint