Remove option to log to file and polish a bit #46
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: CI | |
on: [push, pull_request] | |
jobs: | |
tests: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version-file: "pyproject.toml" | |
- run: python3 -m pip install poetry | |
- run: poetry install --with dev | |
- run: poetry run black --check ./ | |
- run: poetry run isort --check-only ./ | |
- run: poetry run mypy ./ | |
- run: poetry run pylint checkmk_weblate_syncer/ tests/ |