Ponyboy47/Pathman

View on GitHub
.gitlab-ci.yml

Summary

Maintainability
Test Coverage
image: swift:4.2

stages:
    - build
    - test

build:
    stage: build
    script:
        - swift build
    only:
        - branches
    tags:
        - build
        - swift

test:
    stage: test
    script:
        - swift test
    only:
        - branches
    tags:
        - test
        - swift