Files
RediStack/circle.yml
T
2019-02-08 17:23:49 -08:00

24 lines
373 B
YAML

version: 2
jobs:
linux:
docker:
- image: vapor/swift:5.0
- image: redis:5
steps:
- checkout
- run: swift build
- run: swift test
linux-release:
docker:
- image: vapor/swift:5.0
steps:
- checkout
- run: swift build -c release
workflows:
version: 2
tests:
jobs:
- linux
- linux-release