.gitlab-ci.yml 132 Bytes
Newer Older
Käppler's avatar
Käppler committed
1
image: python:3.6
Käppler's avatar
Käppler committed
2
3
4
5
6
7
8
9
10
11

stages:
 - build

before_script:
  - "pip install -U platformio"

job:
  stage: build
  script: "platformio run"