Skip to content

Commit

Permalink
Merge pull request #26 from PelionIoT/misspell
Browse files Browse the repository at this point in the history
Misspell github action & one spelling fix
  • Loading branch information
JanneKiiskila authored Oct 18, 2023
2 parents 0bc7b83 + 0a0a280 commit c16ab2a
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions .github/workflows/misspell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: misspell
on: push

# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: mbed-edge-misspell-'${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true

jobs:
static-checks:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Run misspell (findings may not increase)
if: always()
run: |
curl -L -o ./install-misspell.sh https://git.io/misspell
sh ./install-misspell.sh
bin/misspell -i mosquitto .
2 changes: 1 addition & 1 deletion git_details.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ function(SET_EDGE_EXAMPLES_VERSION_VARIABLES)
message("Setting dummy values to versioning variables.")
set(RELEASE_VERSION "unknown-release" CACHE INTERNAL "Edge Examples release version")
set(GIT_BRANCH "branchless" CACHE INTERNAL "Edge Examples Git branch")
set(GIT_COMMIT "uncommited" CACHE INTERNAL "Edge Examples Git commit")
set(GIT_COMMIT "uncommitted" CACHE INTERNAL "Edge Examples Git commit")
set(GIT_DIRTY "uninited" CACHE INTERNAL "Edge Examples Git if dirty")
set(WRITE_VERSION_FILE 1 CACHE INTERNAL "Edge Examples version file write")
endif()
Expand Down

0 comments on commit c16ab2a

Please sign in to comment.