Skip to content

chore(deps): update dependency boto3 to v1.35.21 #171

chore(deps): update dependency boto3 to v1.35.21

chore(deps): update dependency boto3 to v1.35.21 #171

Workflow file for this run

name: Formatting and Unit Tests
on:
push:
jobs:
unit_tests:
name: Unit Test
runs-on: ubuntu-latest
permissions:
checks: write # Required for Publish Test Results
pull-requests: write # Required for Publish Test Results
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Set up Python 3.11
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5
with:
python-version: "3.11"
cache: 'pip' # caching pip dependencies
- run : pip install -r requirements-dev.txt
- name: Linting and formatting
uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1
with:
extra_args: --all-files --show-diff-on-failure
- name: Unit tests
run: |
pytest --cov=manual_scans --cov=utils --cov-branch --cov-fail-under=15 unittests
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@82082dac68ad6a19d980f8ce817e108b9f496c2a # v2
if: always()
with:
files: "test_reports/*.xml"