nanoMODBUS/.github/workflows/ci.yml
jonath.re@gmail.com f926cd4a81 Add a CI workflow to build the code and run tests
Example output here: https://github.com/jonathangjertsen/nanoMODBUS/runs/7471676743

I'll try to build the Arduino examples as well, but this is a start
2022-07-22 18:10:39 +02:00

16 lines
271 B
YAML

name: ci
on: [push]
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/checkout@v2
- name: build
run: |
mkdir build
cd build
cmake ..
make
./nanomodbus_tests