mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 13:07:56 +00:00
22 lines
299 B
YAML
22 lines
299 B
YAML
|
# https://circleci.com/docs/2.0/
|
||
|
|
||
|
version: 2
|
||
|
workflows:
|
||
|
version: 2
|
||
|
ci:
|
||
|
jobs:
|
||
|
- "lint"
|
||
|
|
||
|
jobs:
|
||
|
lint:
|
||
|
docker:
|
||
|
- image: "circleci/python:2"
|
||
|
|
||
|
steps:
|
||
|
- "checkout"
|
||
|
|
||
|
- run:
|
||
|
name: "Static-ish code checks"
|
||
|
command: |
|
||
|
tox -e codechecks
|