Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: C/C++ CI

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the $default-branch branch
push:
branches: [ "next" ]
pull_request:
branches: [ "next" ]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-22.04

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4

# Runs a single command using the runners shell
- name: check
run: |
echo Hello!
uname -a
pwd
ls -al
2 changes: 2 additions & 0 deletions source/board/eeprom.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ extern "C" {
* address (offset) and data can be done in single I2C operation
*/
#define EEPROM_PAGE_SIZE (256U)
#define TEST_COMMIT_GITHUB

/**
* \brief Temp write buffer to hold address offset and data for page write
* operation - 2 bytes for offset and remaining for one page data
Expand Down
Loading