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 e429b4c commit 887dc3eCopy full SHA for 887dc3e
1 file changed
.github/workflows/meson-build.yml
@@ -0,0 +1,24 @@
1
+name: Meson build libmodbus
2
+
3
+on:
4
+ push:
5
+ branches: ["master"]
6
+ pull_request:
7
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/meson-build@v1.0.3
17
+ with:
18
+ action: test
19
+ - name: configure
20
+ run: meson build
21
+ - name: build
22
+ run: cd build && ninja
23
+ - name: test
24
+ run: cd build && ninja test
0 commit comments