Skip to content

Commit c5ca5ae

Browse files
authored
Enable Github CI
1 parent 46a65b4 commit c5ca5ae

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/main.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: 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+
runs-on: ubuntu-latest
25+
steps:
26+
- uses: actions/checkout@v1
27+
- name: Install Python Wheel
28+
run: pip install wheel
29+
- name: Build Tests
30+
env:
31+
TRAVIS_BUILD_DIR: ${{ github.workspace }}
32+
run: bash $TRAVIS_BUILD_DIR/travis/build-pio.sh

0 commit comments

Comments
 (0)