1 parent 5c3c3c1 commit 93e816fCopy full SHA for 93e816f
1 file changed
.github/workflows/deploy-docs.yml .github/workflows/action.yml.github/workflows/deploy-docs.yml renamed to .github/workflows/action.yml
@@ -1,4 +1,4 @@
1
-name: doxygen
+name: Agile_Modbus
2
3
on:
4
push:
@@ -11,6 +11,29 @@ permissions:
11
contents: write
12
13
jobs:
14
+ example-build:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@v3
19
+ with:
20
+ fetch-depth: 0
21
+ # If your document requires Git submodules, uncomment the next line
22
+ # submodules: true
23
+
24
+ - name: Install Tools
25
+ shell: bash
26
+ run: |
27
+ sudo apt-get update
28
+ sudo apt-get install cmake
29
30
+ - name: Example Compile
31
32
33
+ cd examples
34
+ cmake -B build
35
+ cmake --build build
36
37
deploy-gh-pages:
38
runs-on: ubuntu-latest
39
steps:
0 commit comments