We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a7b334 commit f6c8778Copy full SHA for f6c8778
.github/workflows/main.yml
@@ -0,0 +1,32 @@
1
+name: ESP Async TCP CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ - release/*
8
+ pull_request:
9
10
+jobs:
11
12
+ build-arduino:
13
+ name: Build Arduino
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v1
17
+ - name: Build Tests
18
+ env:
19
+ TRAVIS_BUILD_DIR: ${{ github.workspace }}
20
+ run: bash $TRAVIS_BUILD_DIR/travis/build.sh
21
22
+ build-pio:
23
+ name: Build PlatformIO
24
25
26
27
+ - name: Install Python Wheel
28
+ run: pip install wheel
29
30
31
32
+ run: bash $TRAVIS_BUILD_DIR/travis/build-pio.sh
0 commit comments