We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a40dcbf commit d1dbb09Copy full SHA for d1dbb09
.github/workflows/ci.yml
@@ -29,5 +29,16 @@ jobs:
29
enable_jekyll: false
30
allow_empty_commit: false
31
force_orphan: true
32
- publish_branch: gh-pages
+ publish_branch: gh-pages
33
34
+ run-tests:
35
+ runs-on: ubuntu-latest
36
+ steps:
37
+ - name: Checkout code
38
+ uses: actions/checkout@v3
39
+ with:
40
+ submodules: recursive
41
+ - name: Install dependencies
42
+ run: sudo apt-get install gcc make
43
+ - name: Run tests
44
+ run: make -C test tests
README.md
@@ -1,3 +1,4 @@
1
+
2
# active-object-fsm
3
Minimalistic implementation of Active Object pattern + FSM for embedded systems.
4
0 commit comments