Add pyupgrade to CI runs (#314)

This commit is contained in:
Teemu R
2022-02-21 00:56:18 +01:00
committed by GitHub
parent db170cf1f5
commit e3d76bea75

View File

@@ -26,6 +26,9 @@ jobs:
run: |
python -m pip install --upgrade pip poetry
poetry install
- name: "Run pyupgrade"
run: |
poetry run pre-commit run pyupgrade --all-files
- name: "Code formating (black)"
run: |
poetry run pre-commit run black --all-files