blob: fee1f83732219d887551831ebbe5c0a7f25df823 (
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/archlinux:latest
steps:
- uses: actions/checkout@v4
- run: pacman --noconfirm -Syu bandit
- name: Security checkup with Bandit
run: bandit -r archinstall || exit 0
|