Added some server waits and messages for following the deployment #15
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: Validation CI | |
"on": | |
push: | |
branches: | |
- main | |
pull_request: | |
types: | |
- assigned | |
- opened | |
- edited | |
- reopened | |
- synchronize | |
- ready_for_review | |
- review_requested | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install requirements | |
run: pip3 install pre-commit | |
- name: Run pre-commit tests | |
run: pre-commit run -v --all-files |