blob: 84c633480dd244c727470c3b2982c59b0601f39c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
on: [ push, pull_request ]
name: Bandit security checkup
jobs:
flake8:
runs-on: ubuntu-latest
container:
image: archlinux:latest
steps:
- uses: actions/checkout@v3
- run: pacman --noconfirm -Syu bandit
- name: Security checkup with Bandit
run: bandit -r archinstall || exit 0
|