Skip to content

Commit

Permalink
Pipeline updates and changed numeric values to float
Browse files Browse the repository at this point in the history
  • Loading branch information
ccharz committed Feb 23, 2025
1 parent a3eae66 commit a60963e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ jobs:
composer update -q --no-ansi --prefer-dist --no-interaction --no-progress --no-scripts
- name: Execute tests
run: vendor/bin/phpunit
run: vendor/bin/phpunit --fail-on-incomplete --fail-on-skipped --fail-on-risky --verbose
12 changes: 6 additions & 6 deletions src/Data/EntryData.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ public function __construct(
public DateTimeImmutable $date,
public DateTimeImmutable $sysTime,
public string $type,
public int $sgv,
public int $delta,
public float $sgv,
public float $delta,
public string $direction,
public int $noise,
public int $rssi,
public int $filtered,
public int $unfiltered,
public float $noise,
public float $rssi,
public float $filtered,
public float $unfiltered,
public string $device,
public ?string $id = null,

Expand Down

0 comments on commit a60963e

Please sign in to comment.