From f32de129072fb4d7125ea5090a475b41009f3c91 Mon Sep 17 00:00:00 2001 From: Gunnar Skjold Date: Fri, 22 Nov 2019 19:24:56 +0100 Subject: [PATCH] Create build.yml --- .github/workflows/build.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..48716deb --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,29 @@ +name: Push build + +on: + push: + branches: + - '*' + tags: + - '*' + - '!v*.*.*' + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Set up Python 3.7 + uses: actions/setup-python@v1 + with: + python-version: 3.7 + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -U platformio + - name: PlatformIO lib install + run: pio lib install + - name: PlatformIO run + run: pio run