Skip to content

Commit

Permalink
Merge pull request #2 from Sensirion/create-gh-workflow
Browse files Browse the repository at this point in the history
adding github workflow
  • Loading branch information
psachs committed May 27, 2024
2 parents b44b0d1 + 9ce501f commit 2120f84
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 121 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/arduino_quality_check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Quality check

on:
pull_request:
branches:
- master
push:
branches:
- master

jobs:
arduino-quality:
uses: sensirion/.github/.github/workflows/driver.arduino.check.yml@main
with:
expect-arduino-examples: true
lint-lib-manager-check: update
10 changes: 10 additions & 0 deletions .github/workflows/github_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Github Release

on:
push:
tags:
- '*'

jobs:
github-release:
uses: sensirion/.github/.github/workflows/driver.common.github_release.yml@main
119 changes: 0 additions & 119 deletions .gitlab-ci.yml

This file was deleted.

3 changes: 3 additions & 0 deletions examples/measurementWithCompensation/.arduino-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
compile:
libraries:
- "Sensirion I2C SHT4x"
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
*/

#include <Arduino.h>
#include <SensirionI2CSht4x.h>
#include <SensirionI2cSht4x.h>
#include <SensirionI2cStc3x.h>
#include <Wire.h>

Expand All @@ -56,7 +56,7 @@
#define NO_ERROR 0

SensirionI2cStc3x stc3x_sensor;
SensirionI2CSht4x sht4x_sensor;
SensirionI2cSht4x sht4x_sensor;

static char errorMessage[64];
static int16_t error;
Expand Down
1 change: 1 addition & 0 deletions metadata.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# driver generation metadata
generator_version: 0.38.1
model_version: 1.0.0
dg_status:
Expand Down

0 comments on commit 2120f84

Please sign in to comment.