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