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
23 changes: 23 additions & 0 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: C/C++ CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: configure
run: ./configure
- name: make
run: make
- name: make check
run: make check
- name: make distcheck
run: make distcheck
2 changes: 1 addition & 1 deletion src/obk_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@
#define ENABLE_DRIVER_BL0942 1
#define ENABLE_DRIVER_BL0942SPI 1
#define ENABLE_DRIVER_CSE7766 1
// #define ENABLE_DRIVER_BMP280 1
#define ENABLE_DRIVER_BMP280 1
// #define ENABLE_DRIVER_PT6523 1
// #define ENABLE_DRIVER_MAX6675 1
// #define ENABLE_DRIVER_TEXTSCROLLER 1
Expand Down
Loading