Skip to content

Commit

Permalink
adds pages
Browse files Browse the repository at this point in the history
  • Loading branch information
rlogiacco committed Jan 27, 2024
1 parent 5d12fa7 commit bde0bad
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 4 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Publish Documentation

on:
push:
branches:
- master
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
# Checkout repo
- name: Checkout
uses: actions/checkout@v3
# Generate Doxy docs
- name: Doxygen Action
uses: mattnotmitt/[email protected]
# Publish to GitHub Pages
- name: Publish
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/html
5 changes: 1 addition & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
fqbn:
Expand All @@ -20,7 +19,6 @@ jobs:
- arduino:megaavr:uno2018:mode=on
- arduino:mbed:nano33ble
- arduino:mbed_nano:nanorp2040connect

steps:
- uses: actions/checkout@v4
- uses: arduino/compile-sketches@v1
Expand All @@ -32,14 +30,12 @@ jobs:
build-for-esp32:
runs-on: ubuntu-latest

strategy:
matrix:
fqbn:
- esp32:esp32:esp32
- esp32:esp32:esp32s3
- esp32:esp32:esp32c3

steps:
- uses: actions/checkout@v4
- uses: arduino/compile-sketches@v1
Expand All @@ -53,6 +49,7 @@ jobs:
- examples/AnalogButtons
cli-compile-flags: |
- --warnings="none"
lint:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit bde0bad

Please sign in to comment.