aboutsummaryrefslogtreecommitdiff
path: root/.builds/debian.yml
blob: e016720b4c285d3e6af75642da116fe4a17aa220 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
image: ubuntu/22.04
sources:
  - https://git.sr.ht/~cedric/newspipe
packages:
  - python3
  - python3-dev
  - python3-pip
  - python3-venv
environment:
  project: newspipe
tasks:
  - dependencies: |
      pip3 install --user poetry
      export PATH="$PATH:/home/build/.local/bin"
      cd ${project}
      poetry install
  - lint: |
      export PATH="$PATH:/home/build/.local/bin"
      cd ${project}
      # stop the build if there are Python syntax errors or undefined names
      poetry run flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
      # exit-zero treats all errors as warnings.
      poetry run flake8 . --count --exit-zero --max-complexity=15 --max-line-length=105 --statistics
bgstack15