Skip to content

Commit 3867d44

Browse files
committed
add circle ci config
1 parent e168b6c commit 3867d44

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

circle.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
version: 2
2+
3+
jobs:
4+
linux:
5+
docker:
6+
- image: codevapor/swift:5.0
7+
- image: redis:5
8+
steps:
9+
- checkout
10+
- run: swift build
11+
- run: swift test
12+
linux-release:
13+
docker:
14+
- image: codevapor/swift:5.0
15+
steps:
16+
- checkout
17+
- run: swift build -c release
18+
workflows:
19+
version: 2
20+
tests:
21+
jobs:
22+
- linux
23+
- linux-release

0 commit comments

Comments
 (0)