File: main.yaml

package info (click to toggle)
pybotvac 0.0.28-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 184 kB
  • sloc: python: 871; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 511 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: Run Checks

on: [push, pull_request]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Setup
        uses: actions/setup-python@v2
        with:
          python-version: "3.8"
          architecture: "x64"
      - run: pip install -r requirements.txt
      - run: codespell
      - run: black --check .
      - run: isort --check --diff .
      - run: pylint pybotvac
      - run: flake8 pybotvac
      - run: bandit -r pybotvac