Skip to content

Set up GitHub workflow to run make #1

Set up GitHub workflow to run make

Set up GitHub workflow to run make #1

Workflow file for this run

name: Make
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: clang libbsd-dev libmodbus-dev
- name: make
run: make
- name: make lint
run: make lint