Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use GitHub Actions for continuous integration #29

Merged
merged 4 commits into from
Jan 21, 2021
Merged

Use GitHub Actions for continuous integration #29

merged 4 commits into from
Jan 21, 2021

Commits on Jan 21, 2021

  1. Add CI workflow to check for commonly misspelled words

    On every push, pull request, and periodically, use the codespell-project/actions-codespell action to check for commonly
    misspelled words.
    
    In the event of a false positive, the problematic word should be added, in all lowercase, to the ignore-words-list field
    of ./.codespellrc. Regardless of the case of the word in the false positive, it must be in all lowercase in the ignore
    list. The ignore list is comma-separated with no spaces.
    per1234 committed Jan 21, 2021
    Configuration menu
    Copy the full SHA
    19d2309 View commit details
    Browse the repository at this point in the history
  2. Add "smoke test" examples compilation CI workflow

    On every push or pull request that affects library source or example files, compile all example sketches for the
    specified boards.
    per1234 committed Jan 21, 2021
    Configuration menu
    Copy the full SHA
    edbcf2a View commit details
    Browse the repository at this point in the history
  3. Report changes in memory usage that would result from merging a PR

    On creation or commit to a pull request, a report of the resulting change in memory usage of the examples will be
    commented to the PR thread.
    per1234 committed Jan 21, 2021
    Configuration menu
    Copy the full SHA
    4814aa3 View commit details
    Browse the repository at this point in the history
  4. Add CI workflow to do Arduino project-specific linting

    On every push or pull request, run Arduino Lint to check for common problems not related to the project code.
    per1234 committed Jan 21, 2021
    Configuration menu
    Copy the full SHA
    ccb3f21 View commit details
    Browse the repository at this point in the history