Skip to content

Move CI to github actions #1

Move CI to github actions

Move CI to github actions #1

Workflow file for this run

name: Analyze
on:
push:
branches: [ '**' ]
pull_request:
branches: [ master ]
jobs:
bandit:
runs-on: ubuntu-24.04
name: bandit
steps:
- uses: actions/checkout@v2
- name: install
run: |
sudo apt update
sudo apt upgrade
sudo apt install python3
- name: info
run: |
python3 --version
- name: bandit
run: |
pip install bandit
bandit ./world-dl.py
pylint:
runs-on: ubuntu-24.04
name: pylint
steps:
- uses: actions/checkout@v2
- name: install
run: |
sudo apt update
sudo apt upgrade
sudo apt install python3
- name: info
run: |
python3 --version
- name: pylint
run: |
pip install pylint
pylint --disable=old-style-class --module-naming-style=any ./world-dl.py