Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.

Update README.md

Update README.md #116

Workflow file for this run

name: Bandit Security Linting
on:
pull_request:
push:
branches:
- master
jobs:
automated-testing:
name: Automated Testing
runs-on: ubuntu-latest
steps:
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
architecture: x64
- name: Setup Poetry
run: |
curl -sL https://install.python-poetry.org | python
echo "$HOME/.local/bin" >> $GITHUB_PATH
poetry config virtualenvs.in-project true
- name: Checkout repo
uses: actions/checkout@v2
- name: Install dependencies
run: |
poetry install
- name: Bandit Security Linter
run: poetry run python -m bandit -r simplematrixbotlib