Skip to content

Commit

Permalink
Merge pull request #14 from adafruit/actionci
Browse files Browse the repository at this point in the history
actionified, formatted and doxy'd
  • Loading branch information
siddacious authored Mar 26, 2020
2 parents 3c3d6b8 + d4f2f64 commit 36062d8
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 30 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/githubci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Arduino Library CI

on: [pull_request, push, repository_dispatch]

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: adafruit/ci-arduino
path: ci

- name: pre-install
run: bash ci/actions_install.sh

- name: test platforms
run: python3 ci/build_platform.py main_platforms

- name: clang
run: python3 ci/run-clang-format.py -e "ci/*" -e "bin/*" -r .

- name: doxygen
env:
GH_REPO_TOKEN: ${{ secrets.GH_REPO_TOKEN }}
PRETTYNAME : "Adafruit TLC59711"
run: bash ci/doxy_gen_and_deploy.sh
26 changes: 0 additions & 26 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion Adafruit_TLC59711.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ void Adafruit_TLC59711::write() {
delayMicroseconds(200);
else
delayMicroseconds(2);
_spi->endTransaction();
_spi->endTransaction();

interrupts();
}
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Adafruit_TLC59711 [![Build Status](https://travis-ci.com/adafruit/Adafruit_TLC59711.svg?branch=master)](https://travis-ci.com/adafruit/Adafruit_TLC59711)
================
# Adafruit TLC59711 [![Build Status](https://github.com/adafruit/Adafruit_TLC59711/workflows/Arduino%20Library%20CI/badge.svg)](https://github.com/adafruit/Adafruit_TLC59711/actions)

<a href="https://www.adafruit.com/product/1455"><img src="assets/board.jpg?raw=true" width="500px"></a>

Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=Adafruit TLC59711
version=1.1.0
version=1.1.1
author=Adafruit
maintainer=Adafruit <[email protected]>
sentence=Library for our Adafruit 12-channel PWM/LED driver.
Expand Down

0 comments on commit 36062d8

Please sign in to comment.