File: main.workflow

package info (click to toggle)
pytibber 0.35.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 272 kB
  • sloc: python: 1,797; makefile: 4
file content (18 lines) | stat: -rw-r--r-- 362 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
workflow "flake8" {
  on = "push"
  resolves = ["The Python Action"]
}

action "GitHub Action for Flake8" {
  uses = "cclauss/GitHub-Action-for-Flake8@master"
  args = "flake8 tibber"
}

action "The Python Action" {
  uses = "Gr1N/the-python-action@0.4.0"
  needs = ["GitHub Action for Flake8"]
  args = "tox -e lint"
  env = {
    PYTHON_VERSION = "3.11"
  }
}