Skip to content

Bump ip-address from 10.2.0 to 10.4.0 in /audioclient #312

Bump ip-address from 10.2.0 to 10.4.0 in /audioclient

Bump ip-address from 10.2.0 to 10.4.0 in /audioclient #312

Workflow file for this run

name: Bandit Analysis
on:
push:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install bandit
- name: Analyzing the code with Bandit
run: |
bandit -r $(git ls-files '*.py')