Skip to content

Commit

Permalink
Merge pull request #44 from atsign-foundation/cpswan-cppcheck
Browse files Browse the repository at this point in the history
ci: Add Cppcheck workflow
  • Loading branch information
cpswan authored Nov 30, 2023
2 parents 2fe7fe1 + deb46dd commit 97b0002
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 1 deletion.
20 changes: 20 additions & 0 deletions .github/workflows/cppcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Cppcheck
on:
workflow_dispatch:
push:
branches: [trunk]
pull_request:
branches: [trunk]

permissions:
contents: read

jobs:
cppcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Cppcheck
run: |
sudo apt install -y cppcheck
cppcheck .
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.2.6

- Cppcheck workflow

## v0.2.5

- OSSF Scorecard
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "at_client",
"version": "0.2.5",
"version": "0.2.6",
"description": "atPlatform implementation in the ESP32 (Arduino C++)",
"keywords": "encryption, aes256ctr, aesctr, aes, aes256, rsa, rsa2048, privacy, platform, framework",
"repository": {
Expand Down

0 comments on commit 97b0002

Please sign in to comment.