Bump python-dateutil from 2.8.2 to 2.9.0.post0 #250
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
jobs: | |
lint: | |
container: ghcr.io/elimity-com/insights-client-python | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: /root/.local/bin/poetry install | |
- run: /root/.local/bin/poetry run black --check . | |
- run: /root/.local/bin/poetry run flake8 | |
- run: /root/.local/bin/poetry run isort -c . | |
- run: /root/.local/bin/poetry run mypy . | |
- run: /root/.local/bin/poetry run pydocstyle | |
lock: | |
container: ghcr.io/elimity-com/insights-client-python | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: /root/.local/bin/poetry lock --check | |
test: | |
container: ghcr.io/elimity-com/insights-client-python | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: /root/.local/bin/poetry install | |
- run: /root/.local/bin/poetry run python -m unittest | |
on: pull_request |