Ajouter '.drone.yml'
continuous-integration/drone/push Build is failing Details

pull/7/head
Emre KARTAL 2 years ago
parent ca1f4a9814
commit 68df3cc798

@ -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]
Loading…
Cancel
Save