archive
/
ipc-unix
Archived
1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
ipc-unix/.circleci/config.yml

15 lines
386 B
YAML
Raw Permalink Normal View History

2018-12-07 13:57:23 +00:00
version: 2.0
jobs:
build:
docker:
- image: circleci/python:latest
working_directory: ~/ipc_unix
steps:
- checkout
2018-12-07 13:58:59 +00:00
- run: python -m venv env
- run: env/bin/pip install -e .
- run: env/bin/pip install -r dev-requirements.txt
2018-12-07 14:03:19 +00:00
- run: ./scripts/test.sh
2018-12-08 16:06:54 +00:00
- run: ./scripts/lint.sh