Skip to content

ENH: config tests are added #12

ENH: config tests are added

ENH: config tests are added #12

Workflow file for this run

name: Linting
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install flake8
run: pip install flake8
- name: Run linting
run: flake8 --ignore=E501