Skip to content

Commit 96edf26

Browse files
committed
Add .github/workflows/meson-build.yml
1 parent e429b4c commit 96edf26

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/meson-build.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Meson build libmodbus
2+
3+
on:
4+
push:
5+
branches: ["master"]
6+
pull_request:
7+
branches: ["master"]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v3
15+
- name: configure
16+
run: meson build
17+
- name: build
18+
run: cd build && ninja
19+
- name: test
20+
run: cd build && ninja test

0 commit comments

Comments
 (0)