(add): zoom monitoring graph #31
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: monitoring-test | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'stats-monitoring/**' | |
pull_request: | |
paths: | |
- 'stats-monitoring/**' | |
workflow_dispatch: | |
jobs: | |
pytest: | |
name: pytest for stats-monitoring | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./stats-monitoring | |
steps: | |
- name: Check out | |
uses: actions/checkout@v2 | |
- name: Bulid Docker image | |
run: docker build -t monitoring:latest ./ --build-arg PLATFORM="dev" | |
- name: Run MyPy | |
run: docker run monitoring:latest mypy --config-file mypy.ini . | |
# - name: Run PyTest | |
# run: docker run monitoring:latest pytest tests -v |