Skip to content

Commit

Permalink
feat(circle-ci): replace travis-ci by circle-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
shortcuts committed Jun 30, 2021
1 parent 90f4348 commit 4267a74
Show file tree
Hide file tree
Showing 4 changed files with 292 additions and 192 deletions.
32 changes: 32 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
version: 2

jobs:
pr:
docker:
- image: circleci/python:3.6.2
steps:
- checkout
- run:
name: setup
command: |
sudo apt-get update -y
touch .env
- run:
name: install dependencies
command: |
sudo pip install pipenv
pipenv install --dev
- run:
name: run linter
command: |
pipenv run pylint scraper cli deployer
- run:
name: run tests
command: |
pipenv run ./docsearch test no_browser
workflows:
version: 2
ci:
jobs:
- pr
20 changes: 0 additions & 20 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit 4267a74

Please sign in to comment.