removed unnecessary code to set the charge parameters evse data context, as that shall be done in the 3rd pary, like josev pro #1233
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@v5 | |
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 | |
- 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 |