blob: 4378e8ac09f907b4e8d925a89351936916bf30d4 (
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@v4
- run: pacman --noconfirm -Syu bandit
- name: Security checkup with Bandit
run: bandit -r archinstall || exit 0
|