Skip to content

Update dependabot.yml #46

Update dependabot.yml

Update dependabot.yml #46

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Lint with flake8
run: |
pip install flake8
flake8 .
- name: Security check with Bandit
run: |
pip install bandit
bandit -r .
- name: Test with pytest
run: |
pip install pytest
pytest