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
16 lines
271 B
YAML
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
|