Skip to content

Commit

Permalink
fix run syntax, split into two run steps
Browse files Browse the repository at this point in the history
  • Loading branch information
bear committed Nov 19, 2019
1 parent dc9dfd5 commit 6bb78ad
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,13 @@ jobs:
- image: circleci/python:latest
steps:
- checkout
- run: make dev
- make info
- uname -a
- lsb_release -a
- make ci
- run:
name: setup environment
command: |
make dev
make info
uname -a
lsb_release -a
- run:
name: build and test
command: make ci

0 comments on commit 6bb78ad

Please sign in to comment.