expose sanity script through docker compose (#375)
Motivation: be able to run the sanity check via docker compose Modifications: add sanity task to docker compose file Result: you can now run sanity check via docker
This commit is contained in:
parent
a022954256
commit
093328e1b3
|
@ -19,6 +19,10 @@ services:
|
||||||
- ..:/code
|
- ..:/code
|
||||||
working_dir: /code
|
working_dir: /code
|
||||||
|
|
||||||
|
sanity:
|
||||||
|
<<: *common
|
||||||
|
command: /bin/bash -cl "./scripts/sanity.sh"
|
||||||
|
|
||||||
unit-tests:
|
unit-tests:
|
||||||
<<: *common
|
<<: *common
|
||||||
command: /bin/bash -cl "swift test"
|
command: /bin/bash -cl "swift test"
|
||||||
|
|
Loading…
Reference in New Issue