diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..75811aa --- /dev/null +++ b/.drone.yml @@ -0,0 +1,21 @@ +kind: pipeline +type: docker +name: Swift-ALLIN + +trigger: + event: + - push + +steps: + - name: build + image: swift:latest + commands: + - cd Sources/allin + - swift build + + - name: test + image: swift:latest + commands: + - cd Sources/allin + - swift test + depends_on: [build]