mirror of
https://github.com/swift-server/RediStack.git
synced 2026-05-03 07:32:28 +00:00
24 lines
373 B
YAML
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
|