Skip to content

Commit f9a1fd7

Browse files
Actions CI and Doxygen 1st pass
1 parent 5d14b09 commit f9a1fd7

File tree

11 files changed

+1064
-737
lines changed

11 files changed

+1064
-737
lines changed

.github/workflows/githubci.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Arduino Library CI
2+
3+
on: [pull_request, push, repository_dispatch]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/setup-python@v1
11+
with:
12+
python-version: '3.x'
13+
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v2
15+
with:
16+
repository: adafruit/ci-arduino
17+
path: ci
18+
19+
- name: pre-install
20+
run: bash ci/actions_install.sh
21+
22+
- name: test platforms
23+
run: python3 ci/build_platform.py uno zero
24+
25+
- name: clang
26+
run: python3 ci/run-clang-format.py -e "ci/*" -e "bin/*" -r .
27+
28+
- name: doxygen
29+
env:
30+
GH_REPO_TOKEN: ${{ secrets.GH_REPO_TOKEN }}
31+
PRETTYNAME : "RGB matrix Panel"
32+
run: bash ci/doxy_gen_and_deploy.sh

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Our handy .gitignore for automation ease
2+
Doxyfile*
3+
doxygen_sqlite3.db
4+
html

README.txt

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Adafruit RGB Matrix Panel library [![Build Status](https://github.com/adafruit/RGB-matrix-Panel/workflows/Arduino%20Library%20CI/badge.svg)](https://github.com/adafruit/RGB-matrix-Panel/actions)
2+
13
This is an Arduino library for our 16x32 and 32x32 RGB LED matrix panels
24

35
Pick one up at http://www.adafruit.com/products/420 & http://www.adafruit.com/products/607 !

0 commit comments

Comments
 (0)