Skip to content

Commit 60a5bc5

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

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/meson-build.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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+
- uses: actions/setup-python@v1
16+
- uses: BSFishy/[email protected]
17+
- name: configure
18+
run: meson build
19+
- name: build
20+
run: cd build && ninja
21+
- name: test
22+
run: cd build && ninja test

0 commit comments

Comments
 (0)