Skip to content

Commit 6bb78ad

Browse files
committed
fix run syntax, split into two run steps
1 parent dc9dfd5 commit 6bb78ad

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.circleci/config.yml

+10-5
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,13 @@ jobs:
66
- image: circleci/python:latest
77
steps:
88
- checkout
9-
- run: make dev
10-
- make info
11-
- uname -a
12-
- lsb_release -a
13-
- make ci
9+
- run:
10+
name: setup environment
11+
command: |
12+
make dev
13+
make info
14+
uname -a
15+
lsb_release -a
16+
- run:
17+
name: build and test
18+
command: make ci

0 commit comments

Comments
 (0)