File: config.yml

package info (click to toggle)
python-invocations 4.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 620 kB
  • sloc: python: 2,262; makefile: 3
file content (28 lines) | stat: -rw-r--r-- 687 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
23
24
25
26
27
28
version: 2.1

orbs:
  orb: invocations/orb@1.5.0

workflows:
  main:
    jobs:
      - orb/lint:
          name: Lint
      - orb/format:
          name: Style check
      - orb/coverage:
          name: Test
      - orb/test-release:
          name: Release test
      - orb/test:
          name: Test << matrix.version >>
          # It's not worth testing on other interpreters if the baseline one
          # failed. Can't run >4 jobs at a time anyhow!
          requires: ["Test"]
          matrix:
            parameters:
              version: ["3.10", "3.11", "3.12", "3.13"]
      - orb/docs:
          name: "Docs"
          requires: ["Test"]
          task: "docs --nitpick"