CI framework with support for local execution.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

380 B

alice-ci.yaml examples

Python lint

Installes flake8 package in a virtual elvironment, then lints the contents of the packages directory in the current working dir.

runners:
  python:
    dependencies:
      - name: flake8
jobs:
  - name: lint
    type: python
    workdir: packages
    commands:
      - "-m flake8"

To run this job:

pythom3 -m alice lint