Skip to content

Add transport/bev adapter #171

Add transport/bev adapter

Add transport/bev adapter #171

Workflow file for this run

# This workflow will run linters with a single version of Python
name: Black
on:
push:
branches:
- main
- dev
- release/*
pull_request:
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: "3.10"
- name: Install Python dependencies
run: pip install black==20.8b1 flake8 isort click==8.0.4
- name: Black
if: success() || failure()
run: black --check .
- name: flake8
if: success() || failure()
run: flake8 data_adapter_oemof tests
- name: isort
if: success() || failure()
run: isort --verbose --check-only --diff data_adapter_oemof tests