chore: verified flake8 and isort checks for aws_kms_keyring_example.py #3715
Workflow file for this run
This file contains hidden or 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: Continuous Integration tests for the decrypt oracle | |
on: | |
pull_request: | |
push: | |
# Run once a day | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
# The oracle will run on a Python 3.9 Lamba | |
python-version: 3.9 | |
- run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade -r dev_requirements/ci-requirements.txt | |
- name: run test | |
env: | |
TOXENV: local | |
run: | | |
cd decrypt_oracle | |
tox -- -vv | |
static-analysis: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
category: | |
- bandit | |
- readme | |
- flake8 | |
- pylint | |
- flake8-tests | |
- pylint-tests | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade -r dev_requirements/ci-requirements.txt | |
- name: run test | |
env: | |
TOXENV: ${{ matrix.category }} | |
run: | | |
cd decrypt_oracle | |
tox -- -vv |