feat: non-interactive mode and firewall/batch CLI options to set firewalls to be upgraded #40
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: Run Pytest on Pull Request | |
on: | |
pull_request: | |
branches: [ main, master ] | |
jobs: | |
pytest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.11' | |
- name: Install dependencies | |
run: | | |
pip install poetry | |
poetry install | |
- name: Run Pytest | |
run: | | |
poetry run pytest tests/ -vv |