Updates to store EV and EVSE limits shared in CPD and CL (-20 AC and DC). #837
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR Python 🐍 to Switch Repo | |
on: | |
pull_request: | |
branches: | |
- master | |
env: | |
PYTHON_VERSION: 3.10.5 | |
jobs: | |
code-quality-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Set up Python ${{ env.PYTHON_VERSION }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: Setup the Python Environment by installing Poetry | |
uses: ./.github/actions/setup-python-build-env | |
- name: Create env file | |
run: | | |
cp .env.dev.local .env | |
- name: Install dependencies | |
run: make install-local | |
# TODO: Fix MyPy issues https://github.com/SwitchEV/iso15118/issues/93 | |
# - name: Mypy | |
# run: make mypy | |
- name: Black | |
run: make black | |
- name: Flake8 | |
run: make flake8 | |
- name: isort | |
run: make isort | |
- name: Tests | |
run: make test |