-
-
Notifications
You must be signed in to change notification settings - Fork 80
28 lines (22 loc) · 634 Bytes
/
Copy pathgithubci.yml
File metadata and controls
28 lines (22 loc) · 634 Bytes
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
name: Arduino Library CI
on: [pull_request, push, repository_dispatch]
jobs:
arduino:
strategy:
fail-fast: false
matrix:
arduino-platform: ["nrf52832", "esp8266", "esp32", "nrf52840"]
runs-on: ubuntu-18.04
steps:
- uses: actions/setup-python@v2
with:
python-version: '3.8'
- uses: actions/checkout@v2
- uses: actions/checkout@v2
with:
repository: RAKWireless/WisBlock-CI
path: ci
- name: pre-install
run: bash ci/actions_install.sh
- name: test platforms
run: python3 ci/build_platform.py ${{ matrix.arduino-platform }}