Skip to content

Commit

Permalink
add repo status to readme file
Browse files Browse the repository at this point in the history
  • Loading branch information
hasenradball committed Dec 5, 2023
1 parent c2588f0 commit 6a70f96
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/compile_examples.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Compile examples folder
name: Compile Examples

on:
- push
Expand Down
24 changes: 24 additions & 0 deletions .github/workflows/spell_checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Spell Check

on:
pull_request:
push:
schedule:
# Run every Saturday at 3 AM UTC to catch new misspelling detections resulting from dictionary updates.
- cron: "0 3 * * 6"
# See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows#workflow_dispatch
workflow_dispatch:
# See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows#repository_dispatch
repository_dispatch:

jobs:
spellcheck:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

# See: https://github.com/codespell-project/actions-codespell/blob/master/README.md
- name: Spell check
uses: codespell-project/actions-codespell@master
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# DS3231-RTC Library
![](https://github.com/hasenradball/DS3231-RTC/actions/workflows/spell_checker.yml/badge.svg)
![](https://github.com/hasenradball/DS3231-RTC/actions/workflows/compile_examples.yml/badge.svg)

The **great** C++ Library for the DS3231 real-time clock (RTC) module.

## Description
Expand Down

0 comments on commit 6a70f96

Please sign in to comment.