Fix improper serial packets on linux #186
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test burt_network | |
on: | |
push: | |
paths: | |
- 'burt_network/**' | |
branches: [ "main" ] | |
pull_request: | |
paths: | |
- 'burt_network/**' | |
jobs: | |
burt_network_unit_tests: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: burt_network | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install Dart | |
uses: dart-lang/setup-dart@v1 | |
with: | |
sdk: 3.9.0 | |
- name: Install dependencies | |
run: dart pub get | |
- name: Analyze code | |
run: dart analyze --fatal-infos | |
- name: Run unit tests | |
run: dart test |