-
Notifications
You must be signed in to change notification settings - Fork 200
44 lines (36 loc) · 904 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Arduino Library CI
on:
push:
paths-ignore:
- '**/**.md'
- '/keywords.txt'
- '/library.json'
- '/library.properties'
- '/vue-frontend'
- '/docs'
pull_request:
paths-ignore:
- '**/**.md'
- '/keywords.txt'
- '/library.json'
- '/library.properties'
- '/vue-frontend'
- '/docs'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v1
with:
python-version: '3.x'
- uses: actions/checkout@v2
- uses: actions/checkout@v2
with:
repository: ayushsharma82/ci-arduino
path: ci
- name: pre-install
run: bash ci/actions_install.sh
- name: install-deps
run: bash .github/scripts/dep-install.sh
- name: test platforms
run: python3 ci/build_platform.py esp8266 esp32