chore(examples): Added file_streaming, migration and set_encryption_a… #3962
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: Static analysis checks | |
on: | |
pull_request: | |
push: | |
# Run once a day | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
analysis: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
category: | |
- bandit | |
- doc8 | |
- docs | |
- readme | |
- flake8 | |
- pylint | |
- flake8-tests | |
- pylint-tests | |
- flake8-examples | |
- pylint-examples | |
- black-check | |
- isort-check | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade -r dev_requirements/ci-requirements.txt | |
- name: run test | |
env: | |
TOXENV: ${{ matrix.category }} | |
run: tox -- -vv |