Skip to content

Commit 93e816f

Browse files
committed
update workflows
1 parent 5c3c3c1 commit 93e816f

1 file changed

Lines changed: 24 additions & 1 deletion

File tree

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: doxygen
1+
name: Agile_Modbus
22

33
on:
44
push:
@@ -11,6 +11,29 @@ permissions:
1111
contents: write
1212

1313
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+
shell: bash
32+
run: |
33+
cd examples
34+
cmake -B build
35+
cmake --build build
36+
1437
deploy-gh-pages:
1538
runs-on: ubuntu-latest
1639
steps:

0 commit comments

Comments
 (0)