# 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
```