Skip to content
This repository was archived by the owner on Jan 20, 2025. It is now read-only.

Commit f6c8778

Browse files
authored
Update main.yml (#125)
1 parent 0a7b334 commit f6c8778

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/main.yml

+32
Original file line numberDiff line numberDiff line change
@@ -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+
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)