Codebase list pypng / HEAD .gitlab-ci.yml
HEAD

Tree @HEAD (Download .tar.gz)

.gitlab-ci.yml @HEADraw · history · blame

{
    "image": "alpine:3",
    "stages": [
        "test"
    ],
    "run test": {
        "stage": "test",
        "script": [
            "apk add python3 py3-pip",
            "python3 -m pip install pytest",
            "pytest"
        ]
    }
}