Compare commits
No commits in common. "use-actions-arduino-ci" and "master" have entirely different histories.
use-action
...
master
1 changed files with 22 additions and 3 deletions
25
.github/workflows/githubci.yml
vendored
25
.github/workflows/githubci.yml
vendored
|
|
@ -7,7 +7,26 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: jepler/actions-arduino-ci@main
|
||||
- uses: actions/setup-python@v1
|
||||
with:
|
||||
pretty-name: 'Adafruit SI1145 Arduino Library'
|
||||
repo-token: ${{ secrets.GH_REPO_TOKEN }}
|
||||
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 SI1145 Arduino Library"
|
||||
run: bash ci/doxy_gen_and_deploy.sh
|
||||
|
|
|
|||
Loading…
Reference in a new issue